| 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 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 setChecked(checked); | 810 setChecked(checked); |
| 811 m_reflectsCheckedAttribute = true; | 811 m_reflectsCheckedAttribute = true; |
| 812 } | 812 } |
| 813 } | 813 } |
| 814 | 814 |
| 815 bool HTMLInputElement::rendererIsNeeded(const RenderStyle& style) | 815 bool HTMLInputElement::rendererIsNeeded(const RenderStyle& style) |
| 816 { | 816 { |
| 817 return m_inputType->rendererIsNeeded() && HTMLTextFormControlElement::render
erIsNeeded(style); | 817 return m_inputType->rendererIsNeeded() && HTMLTextFormControlElement::render
erIsNeeded(style); |
| 818 } | 818 } |
| 819 | 819 |
| 820 RenderObject* HTMLInputElement::createRenderer(RenderStyle* style) | 820 LayoutObject* HTMLInputElement::createRenderer(RenderStyle* style) |
| 821 { | 821 { |
| 822 return m_inputTypeView->createRenderer(style); | 822 return m_inputTypeView->createRenderer(style); |
| 823 } | 823 } |
| 824 | 824 |
| 825 void HTMLInputElement::attach(const AttachContext& context) | 825 void HTMLInputElement::attach(const AttachContext& context) |
| 826 { | 826 { |
| 827 HTMLTextFormControlElement::attach(context); | 827 HTMLTextFormControlElement::attach(context); |
| 828 | 828 |
| 829 m_inputTypeView->startResourceLoading(); | 829 m_inputTypeView->startResourceLoading(); |
| 830 m_inputType->countUsage(); | 830 m_inputType->countUsage(); |
| (...skipping 1078 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1909 void HTMLInputElement::ensurePrimaryContent() | 1909 void HTMLInputElement::ensurePrimaryContent() |
| 1910 { | 1910 { |
| 1911 m_inputTypeView->ensurePrimaryContent(); | 1911 m_inputTypeView->ensurePrimaryContent(); |
| 1912 } | 1912 } |
| 1913 | 1913 |
| 1914 bool HTMLInputElement::hasFallbackContent() const | 1914 bool HTMLInputElement::hasFallbackContent() const |
| 1915 { | 1915 { |
| 1916 return m_inputTypeView->hasFallbackContent(); | 1916 return m_inputTypeView->hasFallbackContent(); |
| 1917 } | 1917 } |
| 1918 } // namespace | 1918 } // namespace |
| OLD | NEW |