Title: [176319] trunk/Source/WebCore
Revision
176319
Author
[email protected]
Date
2014-11-19 09:23:14 -0800 (Wed, 19 Nov 2014)

Log Message

[WinCairo] Compile error when CSS_SELECTORS_LEVEL4 is not enabled.
https://bugs.webkit.org/show_bug.cgi?id=138870

Patch by [email protected] <[email protected]> on 2014-11-19
Reviewed by Alex Christensen.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (176318 => 176319)


--- trunk/Source/WebCore/ChangeLog	2014-11-19 15:47:16 UTC (rev 176318)
+++ trunk/Source/WebCore/ChangeLog	2014-11-19 17:23:14 UTC (rev 176319)
@@ -1,3 +1,13 @@
+2014-11-19  [email protected]  <[email protected]>
+
+        [WinCairo] Compile error when CSS_SELECTORS_LEVEL4 is not enabled.
+        https://bugs.webkit.org/show_bug.cgi?id=138870
+
+        Reviewed by Alex Christensen.
+
+        * css/CSSSelector.cpp:
+        (WebCore::simpleSelectorSpecificityInternal):
+
 2014-11-19  Chris Fleizach  <[email protected]>
 
         AX: Screen braille input doesn't work on forms.

Modified: trunk/Source/WebCore/css/CSSSelector.cpp (176318 => 176319)


--- trunk/Source/WebCore/css/CSSSelector.cpp	2014-11-19 15:47:16 UTC (rev 176318)
+++ trunk/Source/WebCore/css/CSSSelector.cpp	2014-11-19 17:23:14 UTC (rev 176319)
@@ -111,8 +111,8 @@
         }
         FALLTHROUGH;
 #else
-        if (pseudoClassType() == PseudoClassNot && selectorList())
-            return selectorList()->first()->simpleSelectorSpecificity();
+        if (simpleSelector.pseudoClassType() == CSSSelector::PseudoClassNot && simpleSelector.selectorList())
+            return simpleSelector.selectorList()->first()->simpleSelectorSpecificity();
         FALLTHROUGH;
 #endif
     case CSSSelector::Exact:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to