| Index: third_party/WebKit/Source/core/html/HTMLUListElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLUListElement.cpp b/third_party/WebKit/Source/core/html/HTMLUListElement.cpp
|
| index c815669238a3222d90f185f61b2b10f8ba1aab06..85f3d947a1892682707056cf620c61d55e68ca88 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLUListElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLUListElement.cpp
|
| @@ -46,16 +46,16 @@ void HTMLUListElement::CollectStyleForPresentationAttribute(
|
| const AtomicString& value,
|
| MutableStylePropertySet* style) {
|
| if (name == typeAttr) {
|
| - if (EqualIgnoringCase(value, "disc"))
|
| + if (DeprecatedEqualIgnoringCase(value, "disc"))
|
| AddPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType,
|
| CSSValueDisc);
|
| - else if (EqualIgnoringCase(value, "circle"))
|
| + else if (DeprecatedEqualIgnoringCase(value, "circle"))
|
| AddPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType,
|
| CSSValueCircle);
|
| - else if (EqualIgnoringCase(value, "square"))
|
| + else if (DeprecatedEqualIgnoringCase(value, "square"))
|
| AddPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType,
|
| CSSValueSquare);
|
| - else if (EqualIgnoringCase(value, "none"))
|
| + else if (DeprecatedEqualIgnoringCase(value, "none"))
|
| AddPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType,
|
| CSSValueNone);
|
| } else {
|
|
|