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 16 matching lines...) Expand all Loading... |
27 #include "RuntimeEnabledFeatures.h" | 27 #include "RuntimeEnabledFeatures.h" |
28 #include "core/dom/Document.h" | 28 #include "core/dom/Document.h" |
29 #include "core/dom/shadow/ElementShadow.h" | 29 #include "core/dom/shadow/ElementShadow.h" |
30 #include "core/editing/FrameSelection.h" | 30 #include "core/editing/FrameSelection.h" |
31 #include "core/fileapi/FileList.h" | 31 #include "core/fileapi/FileList.h" |
32 #include "core/html/HTMLCollection.h" | 32 #include "core/html/HTMLCollection.h" |
33 #include "core/html/HTMLDataListElement.h" | 33 #include "core/html/HTMLDataListElement.h" |
34 #include "core/html/HTMLInputElement.h" | 34 #include "core/html/HTMLInputElement.h" |
35 #include "core/html/HTMLMeterElement.h" | 35 #include "core/html/HTMLMeterElement.h" |
36 #include "core/html/HTMLOptionElement.h" | 36 #include "core/html/HTMLOptionElement.h" |
37 #include "core/html/InputTypeNames.h" | 37 #include "core/html/forms/InputTypeNames.h" |
38 #include "core/html/parser/HTMLParserIdioms.h" | 38 #include "core/html/parser/HTMLParserIdioms.h" |
39 #include "core/html/shadow/MediaControlElements.h" | 39 #include "core/html/shadow/MediaControlElements.h" |
40 #include "core/html/shadow/ShadowElementNames.h" | 40 #include "core/html/shadow/ShadowElementNames.h" |
41 #include "core/html/shadow/SpinButtonElement.h" | 41 #include "core/html/shadow/SpinButtonElement.h" |
42 #include "core/html/shadow/TextControlInnerElements.h" | 42 #include "core/html/shadow/TextControlInnerElements.h" |
43 #include "core/page/FocusController.h" | 43 #include "core/page/FocusController.h" |
44 #include "core/page/Frame.h" | 44 #include "core/page/Frame.h" |
45 #include "core/page/Page.h" | 45 #include "core/page/Page.h" |
46 #include "core/page/Settings.h" | 46 #include "core/page/Settings.h" |
47 #include "core/platform/FileSystem.h" | 47 #include "core/platform/FileSystem.h" |
(...skipping 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1378 | 1378 |
1379 // padding - not honored by WinIE, needs to be removed. | 1379 // padding - not honored by WinIE, needs to be removed. |
1380 style->resetPadding(); | 1380 style->resetPadding(); |
1381 | 1381 |
1382 // border - honored by WinIE, but looks terrible (just paints in the control
box and turns off the Windows XP theme) | 1382 // border - honored by WinIE, but looks terrible (just paints in the control
box and turns off the Windows XP theme) |
1383 // for now, we will not honor it. | 1383 // for now, we will not honor it. |
1384 style->resetBorder(); | 1384 style->resetBorder(); |
1385 } | 1385 } |
1386 | 1386 |
1387 } // namespace WebCore | 1387 } // namespace WebCore |
OLD | NEW |