Title: [196946] trunk/Source/WebCore
Revision
196946
Author
[email protected]
Date
2016-02-22 11:26:48 -0800 (Mon, 22 Feb 2016)

Log Message

Workaround for ICE in GCC 4.8 appeared in r196846.
https://bugs.webkit.org/show_bug.cgi?id=154535

Patch by Konstantin Tokarev <[email protected]> on 2016-02-22
Reviewed by Chris Dumez.

No new tests needed.

* html/HTMLFormElement.cpp:
(WebCore::HTMLFormElement::autocomplete):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (196945 => 196946)


--- trunk/Source/WebCore/ChangeLog	2016-02-22 19:24:16 UTC (rev 196945)
+++ trunk/Source/WebCore/ChangeLog	2016-02-22 19:26:48 UTC (rev 196946)
@@ -1,3 +1,15 @@
+2016-02-22  Konstantin Tokarev  <[email protected]>
+
+        Workaround for ICE in GCC 4.8 appeared in r196846.
+        https://bugs.webkit.org/show_bug.cgi?id=154535
+
+        Reviewed by Chris Dumez.
+
+        No new tests needed.
+
+        * html/HTMLFormElement.cpp:
+        (WebCore::HTMLFormElement::autocomplete):
+
 2016-02-22  Jer Noble  <[email protected]>
 
         Enable AVFoundationNSURLSessionEnabled by default

Modified: trunk/Source/WebCore/html/HTMLFormElement.cpp (196945 => 196946)


--- trunk/Source/WebCore/html/HTMLFormElement.cpp	2016-02-22 19:24:16 UTC (rev 196945)
+++ trunk/Source/WebCore/html/HTMLFormElement.cpp	2016-02-22 19:26:48 UTC (rev 196946)
@@ -870,7 +870,7 @@
     static NeverDestroyed<const String> on("on", String::ConstructFromLiteral);
     static NeverDestroyed<const String> off("off", String::ConstructFromLiteral);
 
-    return equalIgnoringASCIICase(fastGetAttribute(autocompleteAttr), off) ? off : on;
+    return equalIgnoringASCIICase(fastGetAttribute(autocompleteAttr), "off") ? off : on;
 }
 
 } // namespace
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to