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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 #include "core/frame/FrameHost.h" | 54 #include "core/frame/FrameHost.h" |
55 #include "core/frame/FrameView.h" | 55 #include "core/frame/FrameView.h" |
56 #include "core/frame/LocalFrame.h" | 56 #include "core/frame/LocalFrame.h" |
57 #include "core/frame/UseCounter.h" | 57 #include "core/frame/UseCounter.h" |
58 #include "core/html/HTMLCollection.h" | 58 #include "core/html/HTMLCollection.h" |
59 #include "core/html/HTMLDataListElement.h" | 59 #include "core/html/HTMLDataListElement.h" |
60 #include "core/html/HTMLDataListOptionsCollection.h" | 60 #include "core/html/HTMLDataListOptionsCollection.h" |
61 #include "core/html/HTMLFormElement.h" | 61 #include "core/html/HTMLFormElement.h" |
62 #include "core/html/HTMLImageLoader.h" | 62 #include "core/html/HTMLImageLoader.h" |
63 #include "core/html/HTMLOptionElement.h" | 63 #include "core/html/HTMLOptionElement.h" |
| 64 #include "core/html/forms/ColorChooser.h" |
64 #include "core/html/forms/ColorInputType.h" | 65 #include "core/html/forms/ColorInputType.h" |
| 66 #include "core/html/forms/DateTimeChooser.h" |
65 #include "core/html/forms/FileInputType.h" | 67 #include "core/html/forms/FileInputType.h" |
66 #include "core/html/forms/FormController.h" | 68 #include "core/html/forms/FormController.h" |
67 #include "core/html/forms/InputType.h" | 69 #include "core/html/forms/InputType.h" |
68 #include "core/html/forms/SearchInputType.h" | 70 #include "core/html/forms/SearchInputType.h" |
69 #include "core/html/parser/HTMLParserIdioms.h" | 71 #include "core/html/parser/HTMLParserIdioms.h" |
70 #include "core/html/shadow/ShadowElementNames.h" | 72 #include "core/html/shadow/ShadowElementNames.h" |
71 #include "core/page/Chrome.h" | 73 #include "core/page/Chrome.h" |
72 #include "core/page/ChromeClient.h" | 74 #include "core/page/ChromeClient.h" |
73 #include "core/rendering/RenderTextControlSingleLine.h" | 75 #include "core/rendering/RenderTextControlSingleLine.h" |
74 #include "core/rendering/RenderTheme.h" | 76 #include "core/rendering/RenderTheme.h" |
75 #include "platform/ColorChooser.h" | |
76 #include "platform/DateTimeChooser.h" | |
77 #include "platform/Language.h" | 77 #include "platform/Language.h" |
78 #include "platform/PlatformMouseEvent.h" | 78 #include "platform/PlatformMouseEvent.h" |
79 #include "platform/RuntimeEnabledFeatures.h" | 79 #include "platform/RuntimeEnabledFeatures.h" |
80 #include "platform/text/PlatformLocale.h" | 80 #include "platform/text/PlatformLocale.h" |
81 #include "wtf/MathExtras.h" | 81 #include "wtf/MathExtras.h" |
82 | 82 |
83 namespace blink { | 83 namespace blink { |
84 | 84 |
85 using namespace HTMLNames; | 85 using namespace HTMLNames; |
86 | 86 |
(...skipping 1800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1887 { | 1887 { |
1888 return m_inputType->shouldDispatchFormControlChangeEvent(oldValue, newValue)
; | 1888 return m_inputType->shouldDispatchFormControlChangeEvent(oldValue, newValue)
; |
1889 } | 1889 } |
1890 | 1890 |
1891 void HTMLInputElement::didNotifySubtreeInsertionsToDocument() | 1891 void HTMLInputElement::didNotifySubtreeInsertionsToDocument() |
1892 { | 1892 { |
1893 listAttributeTargetChanged(); | 1893 listAttributeTargetChanged(); |
1894 } | 1894 } |
1895 | 1895 |
1896 } // namespace | 1896 } // namespace |
OLD | NEW |