| 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() && inDocument()) |
| 105 formOwner()->invalidateDefaultButtonStyle(); |
| 104 } else { | 106 } else { |
| 105 if (name == formactionAttr) | 107 if (name == formactionAttr) |
| 106 logUpdateAttributeIfIsolatedWorldAndInDocument("button", formactionA
ttr, oldValue, value); | 108 logUpdateAttributeIfIsolatedWorldAndInDocument("button", formactionA
ttr, oldValue, value); |
| 107 HTMLFormControlElement::parseAttribute(name, oldValue, value); | 109 HTMLFormControlElement::parseAttribute(name, oldValue, value); |
| 108 } | 110 } |
| 109 } | 111 } |
| 110 | 112 |
| 111 void HTMLButtonElement::defaultEventHandler(Event* event) | 113 void HTMLButtonElement::defaultEventHandler(Event* event) |
| 112 { | 114 { |
| 113 if (event->type() == EventTypeNames::DOMActivate && !isDisabledFormControl()
) { | 115 if (event->type() == EventTypeNames::DOMActivate && !isDisabledFormControl()
) { |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 } | 215 } |
| 214 | 216 |
| 215 Node::InsertionNotificationRequest HTMLButtonElement::insertedInto(ContainerNode
* insertionPoint) | 217 Node::InsertionNotificationRequest HTMLButtonElement::insertedInto(ContainerNode
* insertionPoint) |
| 216 { | 218 { |
| 217 InsertionNotificationRequest request = HTMLFormControlElement::insertedInto(
insertionPoint); | 219 InsertionNotificationRequest request = HTMLFormControlElement::insertedInto(
insertionPoint); |
| 218 logAddElementIfIsolatedWorldAndInDocument("button", typeAttr, formmethodAttr
, formactionAttr); | 220 logAddElementIfIsolatedWorldAndInDocument("button", typeAttr, formmethodAttr
, formactionAttr); |
| 219 return request; | 221 return request; |
| 220 } | 222 } |
| 221 | 223 |
| 222 } // namespace blink | 224 } // namespace blink |
| OLD | NEW |