| Index: third_party/WebKit/Source/core/html/HTMLOptGroupElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLOptGroupElement.cpp b/third_party/WebKit/Source/core/html/HTMLOptGroupElement.cpp
|
| index 0feeb29edce19a1c95e236a12c237c7be81b00bb..666919516288a88e6f76a536bdc695e1b6d262d6 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLOptGroupElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLOptGroupElement.cpp
|
| @@ -63,15 +63,14 @@ bool HTMLOptGroupElement::isDisabledFormControl() const {
|
| return fastHasAttribute(disabledAttr);
|
| }
|
|
|
| -void HTMLOptGroupElement::parseAttribute(const QualifiedName& name,
|
| - const AtomicString& oldValue,
|
| - const AtomicString& value) {
|
| - HTMLElement::parseAttribute(name, oldValue, value);
|
| +void HTMLOptGroupElement::parseAttribute(
|
| + const AttributeModificationParams& params) {
|
| + HTMLElement::parseAttribute(params);
|
|
|
| - if (name == disabledAttr) {
|
| + if (params.name == disabledAttr) {
|
| pseudoStateChanged(CSSSelector::PseudoDisabled);
|
| pseudoStateChanged(CSSSelector::PseudoEnabled);
|
| - } else if (name == labelAttr) {
|
| + } else if (params.name == labelAttr) {
|
| updateGroupLabel();
|
| }
|
| }
|
|
|