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 21 matching lines...) Expand all Loading... |
32 #include "core/frame/Settings.h" | 32 #include "core/frame/Settings.h" |
33 #include "core/html/HTMLCollection.h" | 33 #include "core/html/HTMLCollection.h" |
34 #include "core/html/HTMLDataListElement.h" | 34 #include "core/html/HTMLDataListElement.h" |
35 #include "core/html/HTMLDataListOptionsCollection.h" | 35 #include "core/html/HTMLDataListOptionsCollection.h" |
36 #include "core/html/HTMLFormControlElement.h" | 36 #include "core/html/HTMLFormControlElement.h" |
37 #include "core/html/HTMLInputElement.h" | 37 #include "core/html/HTMLInputElement.h" |
38 #include "core/html/HTMLOptionElement.h" | 38 #include "core/html/HTMLOptionElement.h" |
39 #include "core/html/forms/SpinButtonElement.h" | 39 #include "core/html/forms/SpinButtonElement.h" |
40 #include "core/html/forms/TextControlInnerElements.h" | 40 #include "core/html/forms/TextControlInnerElements.h" |
41 #include "core/html/parser/HTMLParserIdioms.h" | 41 #include "core/html/parser/HTMLParserIdioms.h" |
42 #include "core/html/shadow/MediaControlElements.h" | |
43 #include "core/html/shadow/ShadowElementNames.h" | 42 #include "core/html/shadow/ShadowElementNames.h" |
44 #include "core/layout/LayoutBox.h" | 43 #include "core/layout/LayoutBox.h" |
45 #include "core/layout/LayoutThemeMobile.h" | 44 #include "core/layout/LayoutThemeMobile.h" |
46 #include "core/page/FocusController.h" | 45 #include "core/page/FocusController.h" |
47 #include "core/page/Page.h" | 46 #include "core/page/Page.h" |
48 #include "core/style/ComputedStyle.h" | 47 #include "core/style/ComputedStyle.h" |
49 #include "platform/FileMetadata.h" | 48 #include "platform/FileMetadata.h" |
50 #include "platform/LayoutTestSupport.h" | 49 #include "platform/LayoutTestSupport.h" |
51 #include "platform/RuntimeEnabledFeatures.h" | 50 #include "platform/RuntimeEnabledFeatures.h" |
52 #include "platform/Theme.h" | 51 #include "platform/Theme.h" |
(...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
913 // padding - not honored by WinIE, needs to be removed. | 912 // padding - not honored by WinIE, needs to be removed. |
914 style.ResetPadding(); | 913 style.ResetPadding(); |
915 | 914 |
916 // border - honored by WinIE, but looks terrible (just paints in the control | 915 // border - honored by WinIE, but looks terrible (just paints in the control |
917 // box and turns off the Windows XP theme) | 916 // box and turns off the Windows XP theme) |
918 // for now, we will not honor it. | 917 // for now, we will not honor it. |
919 style.ResetBorder(); | 918 style.ResetBorder(); |
920 } | 919 } |
921 | 920 |
922 } // namespace blink | 921 } // namespace blink |
OLD | NEW |