Title: [175490] trunk/Source/WebCore
Revision
175490
Author
[email protected]
Date
2014-11-03 14:22:34 -0800 (Mon, 03 Nov 2014)

Log Message

Unreviewed, fix bad assertion in r175487.

I mistakenly used it != values.end() instead of it == values.end()
so the debug bots are crashing.

* css/StyleResolver.cpp:
(WebCore::createGridPosition):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (175489 => 175490)


--- trunk/Source/WebCore/ChangeLog	2014-11-03 22:14:30 UTC (rev 175489)
+++ trunk/Source/WebCore/ChangeLog	2014-11-03 22:22:34 UTC (rev 175490)
@@ -1,3 +1,13 @@
+2014-11-03  Chris Dumez  <[email protected]>
+
+        Unreviewed, fix bad assertion in r175487.
+
+        I mistakenly used it != values.end() instead of it == values.end()
+        so the debug bots are crashing.
+
+        * css/StyleResolver.cpp:
+        (WebCore::createGridPosition):
+
 2014-11-03  Csaba Osztrogonác  <[email protected]>
 
         Fix the !ENABLE(VIDEO) build after r175279

Modified: trunk/Source/WebCore/css/StyleResolver.cpp (175489 => 175490)


--- trunk/Source/WebCore/css/StyleResolver.cpp	2014-11-03 22:14:30 UTC (rev 175489)
+++ trunk/Source/WebCore/css/StyleResolver.cpp	2014-11-03 22:22:34 UTC (rev 175490)
@@ -2034,7 +2034,7 @@
         ++it;
     }
 
-    ASSERT(it != values.end());
+    ASSERT(it == values.end());
     if (isSpanPosition)
         position.setSpanPosition(gridLineNumber ? gridLineNumber : 1, gridLineName);
     else
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to