| 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 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. |
| 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "core/html/HTMLLegendElement.h" | 34 #include "core/html/HTMLLegendElement.h" |
| 35 #include "core/html/ValidityState.h" | 35 #include "core/html/ValidityState.h" |
| 36 #include "core/html/parser/HTMLParserIdioms.h" | 36 #include "core/html/parser/HTMLParserIdioms.h" |
| 37 #include "core/inspector/ConsoleMessage.h" | 37 #include "core/inspector/ConsoleMessage.h" |
| 38 #include "core/layout/LayoutObject.h" | 38 #include "core/layout/LayoutObject.h" |
| 39 #include "core/layout/LayoutTheme.h" | 39 #include "core/layout/LayoutTheme.h" |
| 40 #include "core/page/Page.h" | 40 #include "core/page/Page.h" |
| 41 #include "core/page/ValidationMessageClient.h" | 41 #include "core/page/ValidationMessageClient.h" |
| 42 #include "platform/EventDispatchForbiddenScope.h" | 42 #include "platform/EventDispatchForbiddenScope.h" |
| 43 #include "platform/text/BidiTextRun.h" | 43 #include "platform/text/BidiTextRun.h" |
| 44 #include "wtf/Vector.h" | 44 #include "platform/wtf/Vector.h" |
| 45 | 45 |
| 46 namespace blink { | 46 namespace blink { |
| 47 | 47 |
| 48 using namespace HTMLNames; | 48 using namespace HTMLNames; |
| 49 | 49 |
| 50 HTMLFormControlElement::HTMLFormControlElement(const QualifiedName& tag_name, | 50 HTMLFormControlElement::HTMLFormControlElement(const QualifiedName& tag_name, |
| 51 Document& document) | 51 Document& document) |
| 52 : LabelableElement(tag_name, document), | 52 : LabelableElement(tag_name, document), |
| 53 ancestor_disabled_state_(kAncestorDisabledStateUnknown), | 53 ancestor_disabled_state_(kAncestorDisabledStateUnknown), |
| 54 data_list_ancestor_state_(kUnknown), | 54 data_list_ancestor_state_(kUnknown), |
| (...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 const Element& source) { | 635 const Element& source) { |
| 636 HTMLElement::CopyNonAttributePropertiesFromElement(source); | 636 HTMLElement::CopyNonAttributePropertiesFromElement(source); |
| 637 SetNeedsValidityCheck(); | 637 SetNeedsValidityCheck(); |
| 638 } | 638 } |
| 639 | 639 |
| 640 void HTMLFormControlElement::AssociateWith(HTMLFormElement* form) { | 640 void HTMLFormControlElement::AssociateWith(HTMLFormElement* form) { |
| 641 AssociateByParser(form); | 641 AssociateByParser(form); |
| 642 }; | 642 }; |
| 643 | 643 |
| 644 } // namespace blink | 644 } // namespace blink |
| OLD | NEW |