Title: [215513] trunk/Source/WebCore
Revision
215513
Author
[email protected]
Date
2017-04-19 09:14:51 -0700 (Wed, 19 Apr 2017)

Log Message

Remove bogus assert for :not.
https://bugs.webkit.org/show_bug.cgi?id=170995
<rdar://problem/29693115>

Reviewed by Zalan Bujtas.

* css/parser/CSSSelectorParser.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (215512 => 215513)


--- trunk/Source/WebCore/ChangeLog	2017-04-19 15:51:37 UTC (rev 215512)
+++ trunk/Source/WebCore/ChangeLog	2017-04-19 16:14:51 UTC (rev 215513)
@@ -1,3 +1,13 @@
+2017-04-19  Dave Hyatt  <[email protected]>
+
+        Remove bogus assert for :not.
+        https://bugs.webkit.org/show_bug.cgi?id=170995
+        <rdar://problem/29693115>
+
+        Reviewed by Zalan Bujtas.
+
+        * css/parser/CSSSelectorParser.cpp:
+
 2017-04-19  Antoine Quint  <[email protected]>
 
         [Modern Media Controls] Allow non-PNG resources

Modified: trunk/Source/WebCore/css/parser/CSSSelectorParser.cpp (215512 => 215513)


--- trunk/Source/WebCore/css/parser/CSSSelectorParser.cpp	2017-04-19 15:51:37 UTC (rev 215512)
+++ trunk/Source/WebCore/css/parser/CSSSelectorParser.cpp	2017-04-19 16:14:51 UTC (rev 215513)
@@ -257,7 +257,6 @@
     if (pseudo == CSSSelector::PseudoClassNot) {
         ASSERT(simpleSelector.selectorList());
         ASSERT(simpleSelector.selectorList()->first());
-        ASSERT(!simpleSelector.selectorList()->first()->tagHistory());
         pseudo = simpleSelector.selectorList()->first()->pseudoClassType();
     }
     return isPseudoClassValidAfterPseudoElement(pseudo, compoundPseudoElement);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to