Title: [203233] trunk/Source/WebCore
Revision
203233
Author
[email protected]
Date
2016-07-14 12:29:13 -0700 (Thu, 14 Jul 2016)

Log Message

Fix the !ENABLE(MATHML) build after r201739
https://bugs.webkit.org/show_bug.cgi?id=159767

Reviewed by Alex Christensen.

* dom/Document.cpp:
(WebCore::Document::validateCustomElementName):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (203232 => 203233)


--- trunk/Source/WebCore/ChangeLog	2016-07-14 19:28:29 UTC (rev 203232)
+++ trunk/Source/WebCore/ChangeLog	2016-07-14 19:29:13 UTC (rev 203233)
@@ -1,5 +1,15 @@
 2016-07-14  Csaba Osztrogonác  <[email protected]>
 
+        Fix the !ENABLE(MATHML) build after r201739
+        https://bugs.webkit.org/show_bug.cgi?id=159767
+
+        Reviewed by Alex Christensen.
+
+        * dom/Document.cpp:
+        (WebCore::Document::validateCustomElementName):
+
+2016-07-14  Csaba Osztrogonác  <[email protected]>
+
         Fix the !ENABLE(CSS_IMAGE_SET) build
         https://bugs.webkit.org/show_bug.cgi?id=159766
 

Modified: trunk/Source/WebCore/dom/Document.cpp (203232 => 203233)


--- trunk/Source/WebCore/dom/Document.cpp	2016-07-14 19:28:29 UTC (rev 203232)
+++ trunk/Source/WebCore/dom/Document.cpp	2016-07-14 19:29:13 UTC (rev 203233)
@@ -1141,7 +1141,7 @@
 #if ENABLE(MATHML)
     const auto& annotationXmlLocalName = MathMLNames::annotation_xmlTag.localName();
 #else
-    static NeverDestroyed<const AtomicString> annotationXmlLocalName(ASCIILiteral("annotation-xml"));
+    static NeverDestroyed<const AtomicString> annotationXmlLocalName("annotation-xml", AtomicString::ConstructFromLiteral);
 #endif
 
     if (localName == SVGNames::color_profileTag.localName()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to