| 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 22 matching lines...) Expand all Loading... |
| 33 #include "CSSValueKeywords.h" | 33 #include "CSSValueKeywords.h" |
| 34 #include "FileInputType.h" | 34 #include "FileInputType.h" |
| 35 #include "FormController.h" | 35 #include "FormController.h" |
| 36 #include "HTMLCollection.h" | 36 #include "HTMLCollection.h" |
| 37 #include "HTMLDataListElement.h" | 37 #include "HTMLDataListElement.h" |
| 38 #include "HTMLFormElement.h" | 38 #include "HTMLFormElement.h" |
| 39 #include "HTMLImageLoader.h" | 39 #include "HTMLImageLoader.h" |
| 40 #include "HTMLNames.h" | 40 #include "HTMLNames.h" |
| 41 #include "HTMLOptionElement.h" | 41 #include "HTMLOptionElement.h" |
| 42 #include "InputType.h" | 42 #include "InputType.h" |
| 43 #include "ScriptEventListener.h" | |
| 44 #include "SearchInputType.h" | 43 #include "SearchInputType.h" |
| 44 #include "bindings/v8/ScriptEventListener.h" |
| 45 #include "core/accessibility/AXObjectCache.h" | 45 #include "core/accessibility/AXObjectCache.h" |
| 46 #include "core/css/StyleResolver.h" | 46 #include "core/css/StyleResolver.h" |
| 47 #include "core/dom/BeforeTextInsertedEvent.h" | 47 #include "core/dom/BeforeTextInsertedEvent.h" |
| 48 #include "core/dom/Document.h" | 48 #include "core/dom/Document.h" |
| 49 #include "core/dom/ElementShadow.h" | 49 #include "core/dom/ElementShadow.h" |
| 50 #include "core/dom/EventNames.h" | 50 #include "core/dom/EventNames.h" |
| 51 #include "core/dom/ExceptionCode.h" | 51 #include "core/dom/ExceptionCode.h" |
| 52 #include "core/dom/IdTargetObserver.h" | 52 #include "core/dom/IdTargetObserver.h" |
| 53 #include "core/dom/KeyboardEvent.h" | 53 #include "core/dom/KeyboardEvent.h" |
| 54 #include "core/dom/MouseEvent.h" | 54 #include "core/dom/MouseEvent.h" |
| (...skipping 1839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1894 } | 1894 } |
| 1895 | 1895 |
| 1896 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 1896 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 1897 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() | 1897 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() |
| 1898 { | 1898 { |
| 1899 return m_inputType->customStyleForRenderer(document()->styleResolver()->styl
eForElement(this)); | 1899 return m_inputType->customStyleForRenderer(document()->styleResolver()->styl
eForElement(this)); |
| 1900 } | 1900 } |
| 1901 #endif | 1901 #endif |
| 1902 | 1902 |
| 1903 } // namespace | 1903 } // namespace |
| OLD | NEW |