summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/html/custom/v0_custom_element.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/html/custom/v0_custom_element.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/html/custom/v0_custom_element.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/third_party/blink/renderer/core/html/custom/v0_custom_element.cc b/chromium/third_party/blink/renderer/core/html/custom/v0_custom_element.cc
index 4901ae8926c..4e10b8db5ee 100644
--- a/chromium/third_party/blink/renderer/core/html/custom/v0_custom_element.cc
+++ b/chromium/third_party/blink/renderer/core/html/custom/v0_custom_element.cc
@@ -73,7 +73,7 @@ bool V0CustomElement::IsValidName(const AtomicString& name) {
DEFINE_STATIC_LOCAL(Vector<AtomicString>, reserved_names, ());
if (reserved_names.IsEmpty()) {
// FIXME(crbug.com/426605): We should be able to remove this.
- reserved_names.push_back(MathMLNames::annotation_xmlTag.LocalName());
+ reserved_names.push_back(mathml_names::kAnnotationXmlTag.LocalName());
}
if (kNotFound == reserved_names.Find(name))