| 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 11 matching lines...) Expand all  Loading... | 
| 22  * You should have received a copy of the GNU Library General Public License | 22  * You should have received a copy of the GNU Library General Public License | 
| 23  * along with this library; see the file COPYING.LIB.  If not, write to | 23  * along with this library; see the file COPYING.LIB.  If not, write to | 
| 24  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 24  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 
| 25  * Boston, MA 02110-1301, USA. | 25  * Boston, MA 02110-1301, USA. | 
| 26  * | 26  * | 
| 27  */ | 27  */ | 
| 28 | 28 | 
| 29 #include "config.h" | 29 #include "config.h" | 
| 30 #include "HTMLInputElement.h" | 30 #include "HTMLInputElement.h" | 
| 31 | 31 | 
| 32 #include "AXObjectCache.h" |  | 
| 33 #include "BeforeTextInsertedEvent.h" | 32 #include "BeforeTextInsertedEvent.h" | 
| 34 #include "CSSPropertyNames.h" | 33 #include "CSSPropertyNames.h" | 
| 35 #include "CSSValueKeywords.h" | 34 #include "CSSValueKeywords.h" | 
| 36 #include "DateTimeChooser.h" | 35 #include "DateTimeChooser.h" | 
| 37 #include "Document.h" | 36 #include "Document.h" | 
| 38 #include "Editor.h" | 37 #include "Editor.h" | 
| 39 #include "ElementShadow.h" | 38 #include "ElementShadow.h" | 
| 40 #include "EventNames.h" | 39 #include "EventNames.h" | 
| 41 #include "ExceptionCode.h" | 40 #include "ExceptionCode.h" | 
| 42 #include "UseCounter.h" |  | 
| 43 #include "FileInputType.h" | 41 #include "FileInputType.h" | 
| 44 #include "FileList.h" | 42 #include "FileList.h" | 
| 45 #include "FormController.h" | 43 #include "FormController.h" | 
| 46 #include "Frame.h" | 44 #include "Frame.h" | 
| 47 #include "FrameSelection.h" | 45 #include "FrameSelection.h" | 
| 48 #include "FrameView.h" | 46 #include "FrameView.h" | 
| 49 #include "HTMLCollection.h" | 47 #include "HTMLCollection.h" | 
| 50 #include "HTMLDataListElement.h" | 48 #include "HTMLDataListElement.h" | 
| 51 #include "HTMLFormElement.h" | 49 #include "HTMLFormElement.h" | 
| 52 #include "HTMLImageLoader.h" | 50 #include "HTMLImageLoader.h" | 
| 53 #include "HTMLNames.h" | 51 #include "HTMLNames.h" | 
| 54 #include "HTMLOptionElement.h" | 52 #include "HTMLOptionElement.h" | 
| 55 #include "HTMLParserIdioms.h" | 53 #include "HTMLParserIdioms.h" | 
| 56 #include "IdTargetObserver.h" | 54 #include "IdTargetObserver.h" | 
| 57 #include "InputType.h" | 55 #include "InputType.h" | 
| 58 #include "InsertionPoint.h" | 56 #include "InsertionPoint.h" | 
| 59 #include "KeyboardEvent.h" | 57 #include "KeyboardEvent.h" | 
| 60 #include "Language.h" | 58 #include "Language.h" | 
| 61 #include "LocalizedStrings.h" | 59 #include "LocalizedStrings.h" | 
| 62 #include "MouseEvent.h" | 60 #include "MouseEvent.h" | 
| 63 #include "PlatformLocale.h" | 61 #include "PlatformLocale.h" | 
| 64 #include "PlatformMouseEvent.h" | 62 #include "PlatformMouseEvent.h" | 
| 65 #include "RenderTextControlSingleLine.h" | 63 #include "RenderTextControlSingleLine.h" | 
| 66 #include "RenderTheme.h" | 64 #include "RenderTheme.h" | 
| 67 #include "RuntimeEnabledFeatures.h" | 65 #include "RuntimeEnabledFeatures.h" | 
| 68 #include "ScopedEventQueue.h" | 66 #include "ScopedEventQueue.h" | 
|  | 67 #include "ScriptEventListener.h" | 
| 69 #include "SearchInputType.h" | 68 #include "SearchInputType.h" | 
| 70 #include "ShadowRoot.h" | 69 #include "ShadowRoot.h" | 
| 71 #include "ScriptEventListener.h" |  | 
| 72 #include "StyleResolver.h" | 70 #include "StyleResolver.h" | 
| 73 #include "TouchEvent.h" | 71 #include "TouchEvent.h" | 
|  | 72 #include "UseCounter.h" | 
|  | 73 #include "core/accessibility/AXObjectCache.h" | 
| 74 #include <wtf/MathExtras.h> | 74 #include <wtf/MathExtras.h> | 
| 75 #include <wtf/StdLibExtras.h> | 75 #include <wtf/StdLibExtras.h> | 
| 76 | 76 | 
| 77 #if ENABLE(INPUT_TYPE_COLOR) | 77 #if ENABLE(INPUT_TYPE_COLOR) | 
| 78 #include "ColorInputType.h" | 78 #include "ColorInputType.h" | 
| 79 #endif | 79 #endif | 
| 80 | 80 | 
| 81 #if ENABLE(INPUT_SPEECH) | 81 #if ENABLE(INPUT_SPEECH) | 
| 82 #include "RuntimeEnabledFeatures.h" | 82 #include "RuntimeEnabledFeatures.h" | 
| 83 #endif | 83 #endif | 
| (...skipping 1813 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1897 } | 1897 } | 
| 1898 | 1898 | 
| 1899 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 1899 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 
| 1900 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() | 1900 PassRefPtr<RenderStyle> HTMLInputElement::customStyleForRenderer() | 
| 1901 { | 1901 { | 
| 1902     return m_inputType->customStyleForRenderer(document()->styleResolver()->styl
      eForElement(this)); | 1902     return m_inputType->customStyleForRenderer(document()->styleResolver()->styl
      eForElement(this)); | 
| 1903 } | 1903 } | 
| 1904 #endif | 1904 #endif | 
| 1905 | 1905 | 
| 1906 } // namespace | 1906 } // namespace | 
| OLD | NEW | 
|---|