| 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, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights 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 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 void HTMLButtonElement::parseAttribute(const QualifiedName& name, const AtomicSt
ring& oldValue, const AtomicString& value) | 94 void HTMLButtonElement::parseAttribute(const QualifiedName& name, const AtomicSt
ring& oldValue, const AtomicString& value) |
| 95 { | 95 { |
| 96 if (name == typeAttr) { | 96 if (name == typeAttr) { |
| 97 if (equalIgnoringCase(value, "reset")) | 97 if (equalIgnoringCase(value, "reset")) |
| 98 m_type = RESET; | 98 m_type = RESET; |
| 99 else if (equalIgnoringCase(value, "button")) | 99 else if (equalIgnoringCase(value, "button")) |
| 100 m_type = BUTTON; | 100 m_type = BUTTON; |
| 101 else | 101 else |
| 102 m_type = SUBMIT; | 102 m_type = SUBMIT; |
| 103 setNeedsWillValidateCheck(); | 103 setNeedsWillValidateCheck(); |
| 104 if (formOwner() && inShadowIncludingDocument()) | 104 if (formOwner() && isConnected()) |
| 105 formOwner()->invalidateDefaultButtonStyle(); | 105 formOwner()->invalidateDefaultButtonStyle(); |
| 106 } else { | 106 } else { |
| 107 if (name == formactionAttr) | 107 if (name == formactionAttr) |
| 108 logUpdateAttributeIfIsolatedWorldAndInDocument("button", formactionA
ttr, oldValue, value); | 108 logUpdateAttributeIfIsolatedWorldAndInDocument("button", formactionA
ttr, oldValue, value); |
| 109 HTMLFormControlElement::parseAttribute(name, oldValue, value); | 109 HTMLFormControlElement::parseAttribute(name, oldValue, value); |
| 110 } | 110 } |
| 111 } | 111 } |
| 112 | 112 |
| 113 void HTMLButtonElement::defaultEventHandler(Event* event) | 113 void HTMLButtonElement::defaultEventHandler(Event* event) |
| 114 { | 114 { |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 } | 222 } |
| 223 | 223 |
| 224 Node::InsertionNotificationRequest HTMLButtonElement::insertedInto(ContainerNode
* insertionPoint) | 224 Node::InsertionNotificationRequest HTMLButtonElement::insertedInto(ContainerNode
* insertionPoint) |
| 225 { | 225 { |
| 226 InsertionNotificationRequest request = HTMLFormControlElement::insertedInto(
insertionPoint); | 226 InsertionNotificationRequest request = HTMLFormControlElement::insertedInto(
insertionPoint); |
| 227 logAddElementIfIsolatedWorldAndInDocument("button", typeAttr, formmethodAttr
, formactionAttr); | 227 logAddElementIfIsolatedWorldAndInDocument("button", typeAttr, formmethodAttr
, formactionAttr); |
| 228 return request; | 228 return request; |
| 229 } | 229 } |
| 230 | 230 |
| 231 } // namespace blink | 231 } // namespace blink |
| OLD | NEW |