| OLD | NEW |
| 1 /** | 1 /** |
| 2 * This file is part of the theme implementation for form controls in WebCore. | 2 * This file is part of the theme implementation for form controls in WebCore. |
| 3 * | 3 * |
| 4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc. | 4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 #include "core/html/HTMLDataListOptionsCollection.h" | 36 #include "core/html/HTMLDataListOptionsCollection.h" |
| 37 #include "core/html/HTMLFormControlElement.h" | 37 #include "core/html/HTMLFormControlElement.h" |
| 38 #include "core/html/HTMLInputElement.h" | 38 #include "core/html/HTMLInputElement.h" |
| 39 #include "core/html/HTMLMeterElement.h" | 39 #include "core/html/HTMLMeterElement.h" |
| 40 #include "core/html/HTMLOptionElement.h" | 40 #include "core/html/HTMLOptionElement.h" |
| 41 #include "core/html/parser/HTMLParserIdioms.h" | 41 #include "core/html/parser/HTMLParserIdioms.h" |
| 42 #include "core/html/shadow/MediaControlElements.h" | 42 #include "core/html/shadow/MediaControlElements.h" |
| 43 #include "core/html/shadow/ShadowElementNames.h" | 43 #include "core/html/shadow/ShadowElementNames.h" |
| 44 #include "core/html/shadow/SpinButtonElement.h" | 44 #include "core/html/shadow/SpinButtonElement.h" |
| 45 #include "core/html/shadow/TextControlInnerElements.h" | 45 #include "core/html/shadow/TextControlInnerElements.h" |
| 46 #include "core/page/FocusController.h" |
| 47 #include "core/page/Page.h" |
| 46 #include "core/style/AuthorStyleInfo.h" | 48 #include "core/style/AuthorStyleInfo.h" |
| 47 #include "core/style/ComputedStyle.h" | 49 #include "core/style/ComputedStyle.h" |
| 48 #include "core/page/FocusController.h" | |
| 49 #include "core/page/Page.h" | |
| 50 #include "platform/FileMetadata.h" | 50 #include "platform/FileMetadata.h" |
| 51 #include "platform/FloatConversion.h" | 51 #include "platform/FloatConversion.h" |
| 52 #include "platform/RuntimeEnabledFeatures.h" | 52 #include "platform/RuntimeEnabledFeatures.h" |
| 53 #include "platform/fonts/FontSelector.h" | 53 #include "platform/fonts/FontSelector.h" |
| 54 #include "platform/text/PlatformLocale.h" | 54 #include "platform/text/PlatformLocale.h" |
| 55 #include "platform/text/StringTruncator.h" | 55 #include "platform/text/StringTruncator.h" |
| 56 #include "public/platform/Platform.h" | 56 #include "public/platform/Platform.h" |
| 57 #include "public/platform/WebFallbackThemeEngine.h" | 57 #include "public/platform/WebFallbackThemeEngine.h" |
| 58 #include "public/platform/WebRect.h" | 58 #include "public/platform/WebRect.h" |
| 59 #include "wtf/text/StringBuilder.h" | 59 #include "wtf/text/StringBuilder.h" |
| (...skipping 868 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 928 | 928 |
| 929 // padding - not honored by WinIE, needs to be removed. | 929 // padding - not honored by WinIE, needs to be removed. |
| 930 style.resetPadding(); | 930 style.resetPadding(); |
| 931 | 931 |
| 932 // border - honored by WinIE, but looks terrible (just paints in the control
box and turns off the Windows XP theme) | 932 // border - honored by WinIE, but looks terrible (just paints in the control
box and turns off the Windows XP theme) |
| 933 // for now, we will not honor it. | 933 // for now, we will not honor it. |
| 934 style.resetBorder(); | 934 style.resetBorder(); |
| 935 } | 935 } |
| 936 | 936 |
| 937 } // namespace blink | 937 } // namespace blink |
| OLD | NEW |