Title: [205671] trunk/Source/WebCore
Revision
205671
Author
achristen...@apple.com
Date
2016-09-08 15:33:36 -0700 (Thu, 08 Sep 2016)

Log Message

Fix URLs after r205669.
https://bugs.webkit.org/show_bug.cgi?id=161731

* platform/URLParser.cpp:
(WebCore::URLParser::enabled):
I accidentally committed enabling the URLParser by default.  Not ready yet.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (205670 => 205671)


--- trunk/Source/WebCore/ChangeLog	2016-09-08 22:30:26 UTC (rev 205670)
+++ trunk/Source/WebCore/ChangeLog	2016-09-08 22:33:36 UTC (rev 205671)
@@ -1,3 +1,12 @@
+2016-09-08  Alex Christensen  <achristen...@webkit.org>
+
+        Fix URLs after r205669.
+        https://bugs.webkit.org/show_bug.cgi?id=161731
+
+        * platform/URLParser.cpp:
+        (WebCore::URLParser::enabled):
+        I accidentally committed enabling the URLParser by default.  Not ready yet.
+
 2016-09-08  Chris Dumez  <cdu...@apple.com>
 
         Align proto getter / setter behavior with other browsers

Modified: trunk/Source/WebCore/platform/URLParser.cpp (205670 => 205671)


--- trunk/Source/WebCore/platform/URLParser.cpp	2016-09-08 22:30:26 UTC (rev 205670)
+++ trunk/Source/WebCore/platform/URLParser.cpp	2016-09-08 22:33:36 UTC (rev 205671)
@@ -1508,7 +1508,7 @@
 
 bool URLParser::enabled()
 {
-    return true;
+    return urlParserEnabled;
 }
 
 } // namespace WebCore
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to