| Index: third_party/WebKit/Source/core/html/HTMLBodyElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLBodyElement.cpp b/third_party/WebKit/Source/core/html/HTMLBodyElement.cpp
|
| index a71bf97d125e7de8839e4ebd599af59dc30d4c9d..d3684eca2a5da9b3e9e6d5123ea7c78bb2a617bd 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLBodyElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLBodyElement.cpp
|
| @@ -86,9 +86,10 @@ void HTMLBodyElement::collectStyleForPresentationAttribute(
|
| }
|
| }
|
|
|
| -void HTMLBodyElement::parseAttribute(const QualifiedName& name,
|
| - const AtomicString& oldValue,
|
| - const AtomicString& value) {
|
| +void HTMLBodyElement::parseAttribute(
|
| + const AttributeModificationParams& params) {
|
| + const QualifiedName& name = params.name;
|
| + const AtomicString& value = params.newValue;
|
| if (name == vlinkAttr || name == alinkAttr || name == linkAttr) {
|
| if (value.isNull()) {
|
| if (name == linkAttr)
|
| @@ -213,7 +214,7 @@ void HTMLBodyElement::parseAttribute(const QualifiedName& name,
|
| createAttributeEventListener(document().frame(), name, value,
|
| eventParameterName()));
|
| } else {
|
| - HTMLElement::parseAttribute(name, oldValue, value);
|
| + HTMLElement::parseAttribute(params);
|
| }
|
| }
|
|
|
|
|