| 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 16 matching lines...) Expand all Loading... |
| 27 */ | 27 */ |
| 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 "CSSValueKeywords.h" | 33 #include "CSSValueKeywords.h" |
| 34 #include "HTMLNames.h" | 34 #include "HTMLNames.h" |
| 35 #include "bindings/v8/ScriptEventListener.h" | 35 #include "bindings/v8/ScriptEventListener.h" |
| 36 #include "core/accessibility/AXObjectCache.h" | 36 #include "core/accessibility/AXObjectCache.h" |
| 37 #include "core/css/StyleResolver.h" | 37 #include "core/css/resolver/StyleResolver.h" |
| 38 #include "core/dom/BeforeTextInsertedEvent.h" | 38 #include "core/dom/BeforeTextInsertedEvent.h" |
| 39 #include "core/dom/Document.h" | 39 #include "core/dom/Document.h" |
| 40 #include "core/dom/ElementShadow.h" | 40 #include "core/dom/ElementShadow.h" |
| 41 #include "core/dom/EventNames.h" | 41 #include "core/dom/EventNames.h" |
| 42 #include "core/dom/ExceptionCode.h" | 42 #include "core/dom/ExceptionCode.h" |
| 43 #include "core/dom/IdTargetObserver.h" | 43 #include "core/dom/IdTargetObserver.h" |
| 44 #include "core/dom/KeyboardEvent.h" | 44 #include "core/dom/KeyboardEvent.h" |
| 45 #include "core/dom/MouseEvent.h" | 45 #include "core/dom/MouseEvent.h" |
| 46 #include "core/dom/ScopedEventQueue.h" | 46 #include "core/dom/ScopedEventQueue.h" |
| 47 #include "core/dom/ShadowRoot.h" | 47 #include "core/dom/ShadowRoot.h" |
| (...skipping 1839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1887 } | 1887 } |
| 1888 | 1888 |
| 1889 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 1889 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 1890 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() | 1890 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() |
| 1891 { | 1891 { |
| 1892 return m_inputType->customStyleForRenderer(document()->styleResolver()->styl
eForElement(this)); | 1892 return m_inputType->customStyleForRenderer(document()->styleResolver()->styl
eForElement(this)); |
| 1893 } | 1893 } |
| 1894 #endif | 1894 #endif |
| 1895 | 1895 |
| 1896 } // namespace | 1896 } // namespace |
| OLD | NEW |