| Index: third_party/WebKit/Source/core/dom/custom/V0CustomElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElement.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElement.cpp
|
| index b3a66c164b03f73a746e8f2941f52c4693b56787..0a9ef55ef21ac8a232830516688801dbdc8f5a48 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/V0CustomElement.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElement.cpp
|
| @@ -57,7 +57,7 @@ Vector<AtomicString>& V0CustomElement::EmbedderCustomElementNames() {
|
| }
|
|
|
| void V0CustomElement::AddEmbedderCustomElementName(const AtomicString& name) {
|
| - AtomicString lower = name.Lower();
|
| + AtomicString lower = name.DeprecatedLower();
|
| if (IsValidName(lower, kEmbedderNames))
|
| return;
|
| EmbedderCustomElementNames().push_back(lower);
|
|
|