Title: [175447] trunk/Source/WebCore
Revision
175447
Author
[email protected]
Date
2014-10-31 20:22:55 -0700 (Fri, 31 Oct 2014)

Log Message

Fix the Debug builds after r175446

Patch by Benjamin Poulain <[email protected]> on 2014-10-31

* css/CSSSelector.cpp:
(WebCore::CSSSelector::selectorText):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (175446 => 175447)


--- trunk/Source/WebCore/ChangeLog	2014-11-01 03:06:27 UTC (rev 175446)
+++ trunk/Source/WebCore/ChangeLog	2014-11-01 03:22:55 UTC (rev 175447)
@@ -1,3 +1,10 @@
+2014-10-31  Benjamin Poulain  <[email protected]>
+
+        Fix the Debug builds after r175446
+
+        * css/CSSSelector.cpp:
+        (WebCore::CSSSelector::selectorText):
+
 2014-10-31  Dhi Aurrahman  <[email protected]>
 
         Add initial parsing functionality of :lang pseudo class in Selectors Level 4.

Modified: trunk/Source/WebCore/css/CSSSelector.cpp (175446 => 175447)


--- trunk/Source/WebCore/css/CSSSelector.cpp	2014-11-01 03:06:27 UTC (rev 175446)
+++ trunk/Source/WebCore/css/CSSSelector.cpp	2014-11-01 03:22:55 UTC (rev 175447)
@@ -408,7 +408,7 @@
             case CSSSelector::PseudoClassLang:
                 str.appendLiteral(":lang(");
 #if ENABLE(CSS_SELECTORS_LEVEL4)
-                ASSERT_WITH_MESSAGE(cs->argumentList() && !cs->argumentList().isEmpty(), "An empty :lang() is invalid and should never be generated by the parser.");
+                ASSERT_WITH_MESSAGE(cs->argumentList() && !cs->argumentList()->isEmpty(), "An empty :lang() is invalid and should never be generated by the parser.");
                 appendArgumentList(str, *cs->argumentList());
                 str.append(')');
 #else
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to