| Index: third_party/WebKit/Source/core/html/HTMLFrameElementBase.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLFrameElementBase.cpp b/third_party/WebKit/Source/core/html/HTMLFrameElementBase.cpp
|
| index ca3bb0fb6accf5aba82e5ddc6a64babf9d522291..6c41556a1790b395476608d416442727b9365333 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLFrameElementBase.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLFrameElementBase.cpp
|
| @@ -149,9 +149,10 @@ void HTMLFrameElementBase::ParseAttribute(
|
| } else if (name == scrollingAttr) {
|
| // Auto and yes both simply mean "allow scrolling." No means "don't allow
|
| // scrolling."
|
| - if (EqualIgnoringCase(value, "auto") || EqualIgnoringCase(value, "yes"))
|
| + if (DeprecatedEqualIgnoringCase(value, "auto") ||
|
| + DeprecatedEqualIgnoringCase(value, "yes"))
|
| SetScrollingMode(kScrollbarAuto);
|
| - else if (EqualIgnoringCase(value, "no"))
|
| + else if (DeprecatedEqualIgnoringCase(value, "no"))
|
| SetScrollingMode(kScrollbarAlwaysOff);
|
| } else if (name == onbeforeunloadAttr) {
|
| // FIXME: should <frame> elements have beforeunload handlers?
|
|
|