OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) | 7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) |
8 * Copyright (C) 2010 Google Inc. All rights reserved. | 8 * Copyright (C) 2010 Google Inc. All rights reserved. |
9 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 9 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
10 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 10 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 #include "core/dom/MouseEvent.h" | 44 #include "core/dom/MouseEvent.h" |
45 #include "core/dom/ScopedEventQueue.h" | 45 #include "core/dom/ScopedEventQueue.h" |
46 #include "core/dom/TouchController.h" | 46 #include "core/dom/TouchController.h" |
47 #include "core/dom/TouchEvent.h" | 47 #include "core/dom/TouchEvent.h" |
48 #include "core/dom/shadow/ElementShadow.h" | 48 #include "core/dom/shadow/ElementShadow.h" |
49 #include "core/dom/shadow/InsertionPoint.h" | 49 #include "core/dom/shadow/InsertionPoint.h" |
50 #include "core/dom/shadow/ShadowRoot.h" | 50 #include "core/dom/shadow/ShadowRoot.h" |
51 #include "core/editing/Editor.h" | 51 #include "core/editing/Editor.h" |
52 #include "core/editing/FrameSelection.h" | 52 #include "core/editing/FrameSelection.h" |
53 #include "core/fileapi/FileList.h" | 53 #include "core/fileapi/FileList.h" |
54 #include "core/html/ColorInputType.h" | |
55 #include "core/html/FileInputType.h" | |
56 #include "core/html/FormController.h" | |
57 #include "core/html/HTMLCollection.h" | 54 #include "core/html/HTMLCollection.h" |
58 #include "core/html/HTMLDataListElement.h" | 55 #include "core/html/HTMLDataListElement.h" |
59 #include "core/html/HTMLFormElement.h" | 56 #include "core/html/HTMLFormElement.h" |
60 #include "core/html/HTMLImageLoader.h" | 57 #include "core/html/HTMLImageLoader.h" |
61 #include "core/html/HTMLOptionElement.h" | 58 #include "core/html/HTMLOptionElement.h" |
62 #include "core/html/InputType.h" | 59 #include "core/html/forms/ColorInputType.h" |
63 #include "core/html/SearchInputType.h" | 60 #include "core/html/forms/FileInputType.h" |
| 61 #include "core/html/forms/FormController.h" |
| 62 #include "core/html/forms/InputType.h" |
| 63 #include "core/html/forms/SearchInputType.h" |
64 #include "core/html/parser/HTMLParserIdioms.h" | 64 #include "core/html/parser/HTMLParserIdioms.h" |
65 #include "core/page/Frame.h" | 65 #include "core/page/Frame.h" |
66 #include "core/page/FrameView.h" | 66 #include "core/page/FrameView.h" |
67 #include "core/page/UseCounter.h" | 67 #include "core/page/UseCounter.h" |
68 #include "core/platform/DateTimeChooser.h" | 68 #include "core/platform/DateTimeChooser.h" |
69 #include "core/platform/Language.h" | 69 #include "core/platform/Language.h" |
70 #include "core/platform/LocalizedStrings.h" | 70 #include "core/platform/LocalizedStrings.h" |
71 #include "core/platform/PlatformMouseEvent.h" | 71 #include "core/platform/PlatformMouseEvent.h" |
72 #include "core/rendering/RenderTextControlSingleLine.h" | 72 #include "core/rendering/RenderTextControlSingleLine.h" |
73 #include "core/rendering/RenderTheme.h" | 73 #include "core/rendering/RenderTheme.h" |
(...skipping 1805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1879 } | 1879 } |
1880 | 1880 |
1881 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 1881 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
1882 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() | 1882 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() |
1883 { | 1883 { |
1884 return m_inputTypeView->customStyleForRenderer(originalStyleForRenderer()); | 1884 return m_inputTypeView->customStyleForRenderer(originalStyleForRenderer()); |
1885 } | 1885 } |
1886 #endif | 1886 #endif |
1887 | 1887 |
1888 } // namespace | 1888 } // namespace |
OLD | NEW |