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 17 matching lines...) Expand all Loading... |
28 | 28 |
29 #include "config.h" | 29 #include "config.h" |
30 #include "HTMLInputElement.h" | 30 #include "HTMLInputElement.h" |
31 | 31 |
32 #include "AXObjectCache.h" | 32 #include "AXObjectCache.h" |
33 #include "BeforeTextInsertedEvent.h" | 33 #include "BeforeTextInsertedEvent.h" |
34 #include "CSSPropertyNames.h" | 34 #include "CSSPropertyNames.h" |
35 #include "CSSValueKeywords.h" | 35 #include "CSSValueKeywords.h" |
36 #include "DateTimeChooser.h" | 36 #include "DateTimeChooser.h" |
37 #include "Document.h" | 37 #include "Document.h" |
| 38 #include "Editor.h" |
38 #include "ElementShadow.h" | 39 #include "ElementShadow.h" |
39 #include "EventNames.h" | 40 #include "EventNames.h" |
40 #include "ExceptionCode.h" | 41 #include "ExceptionCode.h" |
41 #include "UseCounter.h" | 42 #include "UseCounter.h" |
42 #include "FileInputType.h" | 43 #include "FileInputType.h" |
43 #include "FileList.h" | 44 #include "FileList.h" |
44 #include "FormController.h" | 45 #include "FormController.h" |
45 #include "Frame.h" | 46 #include "Frame.h" |
| 47 #include "FrameSelection.h" |
46 #include "FrameView.h" | 48 #include "FrameView.h" |
47 #include "HTMLCollection.h" | 49 #include "HTMLCollection.h" |
48 #include "HTMLDataListElement.h" | 50 #include "HTMLDataListElement.h" |
49 #include "HTMLFormElement.h" | 51 #include "HTMLFormElement.h" |
50 #include "HTMLImageLoader.h" | 52 #include "HTMLImageLoader.h" |
51 #include "HTMLNames.h" | 53 #include "HTMLNames.h" |
52 #include "HTMLOptionElement.h" | 54 #include "HTMLOptionElement.h" |
53 #include "HTMLParserIdioms.h" | 55 #include "HTMLParserIdioms.h" |
54 #include "IdTargetObserver.h" | 56 #include "IdTargetObserver.h" |
55 #include "InputType.h" | 57 #include "InputType.h" |
56 #include "InsertionPoint.h" | 58 #include "InsertionPoint.h" |
57 #include "KeyboardEvent.h" | 59 #include "KeyboardEvent.h" |
58 #include "Language.h" | 60 #include "Language.h" |
59 #include "LocalizedStrings.h" | 61 #include "LocalizedStrings.h" |
60 #include "MouseEvent.h" | 62 #include "MouseEvent.h" |
61 #include "PlatformLocale.h" | 63 #include "PlatformLocale.h" |
| 64 #include "PlatformMouseEvent.h" |
62 #include "RenderTextControlSingleLine.h" | 65 #include "RenderTextControlSingleLine.h" |
63 #include "RenderTheme.h" | 66 #include "RenderTheme.h" |
64 #include "RuntimeEnabledFeatures.h" | 67 #include "RuntimeEnabledFeatures.h" |
65 #include "ScopedEventQueue.h" | 68 #include "ScopedEventQueue.h" |
66 #include "SearchInputType.h" | 69 #include "SearchInputType.h" |
67 #include "ShadowRoot.h" | 70 #include "ShadowRoot.h" |
68 #include "ScriptEventListener.h" | 71 #include "ScriptEventListener.h" |
69 #include "StyleResolver.h" | 72 #include "StyleResolver.h" |
70 #include <wtf/MathExtras.h> | 73 #include <wtf/MathExtras.h> |
71 #include <wtf/StdLibExtras.h> | 74 #include <wtf/StdLibExtras.h> |
(...skipping 1898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1970 } | 1973 } |
1971 | 1974 |
1972 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 1975 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
1973 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() | 1976 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() |
1974 { | 1977 { |
1975 return m_inputType->customStyleForRenderer(document()->styleResolver()->styl
eForElement(this)); | 1978 return m_inputType->customStyleForRenderer(document()->styleResolver()->styl
eForElement(this)); |
1976 } | 1979 } |
1977 #endif | 1980 #endif |
1978 | 1981 |
1979 } // namespace | 1982 } // namespace |
OLD | NEW |