| Index: third_party/WebKit/Source/core/html/HTMLLIElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLLIElement.cpp b/third_party/WebKit/Source/core/html/HTMLLIElement.cpp
|
| index 319dfea480e930bb17fc9c3cbe982eb40a8ba151..50a3967501e9f673fcaf1dd8a9bfb731285f50c3 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLLIElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLLIElement.cpp
|
| @@ -81,14 +81,12 @@ void HTMLLIElement::collectStyleForPresentationAttribute(
|
| }
|
| }
|
|
|
| -void HTMLLIElement::parseAttribute(const QualifiedName& name,
|
| - const AtomicString& oldValue,
|
| - const AtomicString& value) {
|
| - if (name == valueAttr) {
|
| +void HTMLLIElement::parseAttribute(const AttributeModificationParams& params) {
|
| + if (params.name == valueAttr) {
|
| if (layoutObject() && layoutObject()->isListItem())
|
| - parseValue(value);
|
| + parseValue(params.newValue);
|
| } else {
|
| - HTMLElement::parseAttribute(name, oldValue, value);
|
| + HTMLElement::parseAttribute(params);
|
| }
|
| }
|
|
|
|
|