Title: [209699] trunk/Tools
Revision
209699
Author
[email protected]
Date
2016-12-11 22:39:39 -0800 (Sun, 11 Dec 2016)

Log Message

[CSS Parser] Make sure content extensions initialize AtomicString
https://bugs.webkit.org/show_bug.cgi?id=165737

Reviewed by Darin Adler.

* TestWebKitAPI/Tests/WebCore/ContentExtensions.cpp:
(TestWebKitAPI::makeBackend):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (209698 => 209699)


--- trunk/Tools/ChangeLog	2016-12-12 04:59:18 UTC (rev 209698)
+++ trunk/Tools/ChangeLog	2016-12-12 06:39:39 UTC (rev 209699)
@@ -1,3 +1,13 @@
+2016-12-11  Dave Hyatt  <[email protected]>
+
+        [CSS Parser] Make sure content extensions initialize AtomicString
+        https://bugs.webkit.org/show_bug.cgi?id=165737
+
+        Reviewed by Darin Adler.
+
+        * TestWebKitAPI/Tests/WebCore/ContentExtensions.cpp:
+        (TestWebKitAPI::makeBackend):
+
 2016-12-08  Dave Hyatt  <[email protected]>
 
         [CSS Parser] Remove the old CSS Parser

Modified: trunk/Tools/TestWebKitAPI/Tests/WebCore/ContentExtensions.cpp (209698 => 209699)


--- trunk/Tools/TestWebKitAPI/Tests/WebCore/ContentExtensions.cpp	2016-12-12 04:59:18 UTC (rev 209698)
+++ trunk/Tools/TestWebKitAPI/Tests/WebCore/ContentExtensions.cpp	2016-12-12 06:39:39 UTC (rev 209699)
@@ -213,6 +213,7 @@
 
 ContentExtensions::ContentExtensionsBackend makeBackend(const char* json)
 {
+    AtomicString::init();
     auto extension = InMemoryCompiledContentExtension::createFromFilter(json);
     ContentExtensions::ContentExtensionsBackend backend;
     backend.addContentExtension("testFilter", extension);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to