| Index: third_party/WebKit/Source/core/dom/Document.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
|
| index d8fc1a43d6f1d65b869cedef6bcf79b60cd5eb2d..fbc5df68763c615c2bc386bbb6ae236d2e62489c 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -695,7 +695,7 @@ bool Document::isInMainFrame() const {
|
| }
|
|
|
| AtomicString Document::convertLocalName(const AtomicString& name) {
|
| - return isHTMLDocument() ? name.lower() : name;
|
| + return isHTMLDocument() ? name.lowerASCII() : name;
|
| }
|
|
|
| // https://dom.spec.whatwg.org/#dom-document-createelement
|
|
|