| 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 "core/html/HTMLInputElement.h" | 30 #include "core/html/HTMLInputElement.h" |
| 31 | 31 |
| 32 #include "CSSPropertyNames.h" | 32 #include "CSSPropertyNames.h" |
| 33 #include "HTMLNames.h" | 33 #include "HTMLNames.h" |
| 34 #include "RuntimeEnabledFeatures.h" | 34 #include "RuntimeEnabledFeatures.h" |
| 35 #include "bindings/v8/ExceptionState.h" | 35 #include "bindings/v8/ExceptionState.h" |
| 36 #include "bindings/v8/ScriptEventListener.h" | 36 #include "bindings/v8/ScriptEventListener.h" |
| 37 #include "core/accessibility/AXObjectCache.h" | 37 #include "core/accessibility/AXObjectCache.h" |
| 38 #include "core/events/BeforeTextInsertedEvent.h" | |
| 39 #include "core/dom/Document.h" | 38 #include "core/dom/Document.h" |
| 40 #include "core/events/EventNames.h" | |
| 41 #include "core/dom/ExceptionCode.h" | 39 #include "core/dom/ExceptionCode.h" |
| 42 #include "core/dom/IdTargetObserver.h" | 40 #include "core/dom/IdTargetObserver.h" |
| 43 #include "core/events/KeyboardEvent.h" | |
| 44 #include "core/events/MouseEvent.h" | |
| 45 #include "core/events/ScopedEventQueue.h" | |
| 46 #include "core/events/TouchEvent.h" | |
| 47 #include "core/dom/shadow/ElementShadow.h" | 41 #include "core/dom/shadow/ElementShadow.h" |
| 48 #include "core/dom/shadow/InsertionPoint.h" | 42 #include "core/dom/shadow/InsertionPoint.h" |
| 49 #include "core/dom/shadow/ShadowRoot.h" | 43 #include "core/dom/shadow/ShadowRoot.h" |
| 50 #include "core/editing/Editor.h" | 44 #include "core/editing/Editor.h" |
| 51 #include "core/editing/FrameSelection.h" | 45 #include "core/editing/FrameSelection.h" |
| 46 #include "core/events/BeforeTextInsertedEvent.h" |
| 47 #include "core/events/EventNames.h" |
| 48 #include "core/events/KeyboardEvent.h" |
| 49 #include "core/events/MouseEvent.h" |
| 50 #include "core/events/ScopedEventQueue.h" |
| 51 #include "core/events/TouchEvent.h" |
| 52 #include "core/fileapi/FileList.h" | 52 #include "core/fileapi/FileList.h" |
| 53 #include "core/html/HTMLCollection.h" | 53 #include "core/html/HTMLCollection.h" |
| 54 #include "core/html/HTMLDataListElement.h" | 54 #include "core/html/HTMLDataListElement.h" |
| 55 #include "core/html/HTMLFormElement.h" | 55 #include "core/html/HTMLFormElement.h" |
| 56 #include "core/html/HTMLImageLoader.h" | 56 #include "core/html/HTMLImageLoader.h" |
| 57 #include "core/html/HTMLOptionElement.h" | 57 #include "core/html/HTMLOptionElement.h" |
| 58 #include "core/html/forms/ColorInputType.h" | 58 #include "core/html/forms/ColorInputType.h" |
| 59 #include "core/html/forms/FileInputType.h" | 59 #include "core/html/forms/FileInputType.h" |
| 60 #include "core/html/forms/FormController.h" | 60 #include "core/html/forms/FormController.h" |
| 61 #include "core/html/forms/InputType.h" | 61 #include "core/html/forms/InputType.h" |
| 62 #include "core/html/forms/SearchInputType.h" | 62 #include "core/html/forms/SearchInputType.h" |
| 63 #include "core/html/parser/HTMLParserIdioms.h" | 63 #include "core/html/parser/HTMLParserIdioms.h" |
| 64 #include "core/page/Frame.h" | 64 #include "core/page/Frame.h" |
| 65 #include "core/page/FrameView.h" | 65 #include "core/page/FrameView.h" |
| 66 #include "core/page/UseCounter.h" | 66 #include "core/page/UseCounter.h" |
| 67 #include "core/platform/DateTimeChooser.h" | 67 #include "core/platform/DateTimeChooser.h" |
| 68 #include "platform/Language.h" | |
| 69 #include "core/platform/PlatformMouseEvent.h" | 68 #include "core/platform/PlatformMouseEvent.h" |
| 70 #include "core/platform/text/PlatformLocale.h" | |
| 71 #include "core/rendering/RenderTextControlSingleLine.h" | 69 #include "core/rendering/RenderTextControlSingleLine.h" |
| 72 #include "core/rendering/RenderTheme.h" | 70 #include "core/rendering/RenderTheme.h" |
| 71 #include "platform/Language.h" |
| 72 #include "platform/text/PlatformLocale.h" |
| 73 #include "wtf/MathExtras.h" | 73 #include "wtf/MathExtras.h" |
| 74 | 74 |
| 75 using namespace std; | 75 using namespace std; |
| 76 | 76 |
| 77 namespace WebCore { | 77 namespace WebCore { |
| 78 | 78 |
| 79 using namespace HTMLNames; | 79 using namespace HTMLNames; |
| 80 | 80 |
| 81 class ListAttributeTargetObserver : IdTargetObserver { | 81 class ListAttributeTargetObserver : IdTargetObserver { |
| 82 WTF_MAKE_FAST_ALLOCATED; | 82 WTF_MAKE_FAST_ALLOCATED; |
| (...skipping 1789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1872 } | 1872 } |
| 1873 | 1873 |
| 1874 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 1874 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 1875 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() | 1875 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() |
| 1876 { | 1876 { |
| 1877 return m_inputTypeView->customStyleForRenderer(originalStyleForRenderer()); | 1877 return m_inputTypeView->customStyleForRenderer(originalStyleForRenderer()); |
| 1878 } | 1878 } |
| 1879 #endif | 1879 #endif |
| 1880 | 1880 |
| 1881 } // namespace | 1881 } // namespace |
| OLD | NEW |