Title: [191201] trunk/Source/WebCore
Revision
191201
Author
hy...@apple.com
Date
2015-10-16 13:29:41 -0700 (Fri, 16 Oct 2015)

Log Message

ASSERT in imported/blink/fast/block/float/overhanging-float-crashes-when-sibling-becomes-formatting-context.html
https://bugs.webkit.org/show_bug.cgi?id=150249

Reviewed by Myles Maxfield.

Covered by existing tests.

* css/CSSValue.cpp:
(WebCore::CSSValue::equals):
Make sure the "unset" value has an equals implementation.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (191200 => 191201)


--- trunk/Source/WebCore/ChangeLog	2015-10-16 20:27:52 UTC (rev 191200)
+++ trunk/Source/WebCore/ChangeLog	2015-10-16 20:29:41 UTC (rev 191201)
@@ -1,3 +1,16 @@
+2015-10-16  David Hyatt  <hy...@apple.com>
+
+        ASSERT in imported/blink/fast/block/float/overhanging-float-crashes-when-sibling-becomes-formatting-context.html
+        https://bugs.webkit.org/show_bug.cgi?id=150249
+
+        Reviewed by Myles Maxfield.
+
+        Covered by existing tests.
+
+        * css/CSSValue.cpp:
+        (WebCore::CSSValue::equals):
+        Make sure the "unset" value has an equals implementation.
+
 2015-10-16  Brady Eidson  <beid...@apple.com>
 
         Modern IDB: Handle versionchange events.

Modified: trunk/Source/WebCore/css/CSSValue.cpp (191200 => 191201)


--- trunk/Source/WebCore/css/CSSValue.cpp	2015-10-16 20:27:52 UTC (rev 191200)
+++ trunk/Source/WebCore/css/CSSValue.cpp	2015-10-16 20:29:41 UTC (rev 191201)
@@ -201,6 +201,8 @@
             return compareCSSValues<CSSInheritedValue>(*this, other);
         case InitialClass:
             return compareCSSValues<CSSInitialValue>(*this, other);
+        case UnsetClass:
+            return compareCSSValues<CSSUnsetValue>(*this, other);
 #if ENABLE(CSS_GRID_LAYOUT)
         case GridLineNamesClass:
             return compareCSSValues<CSSGridLineNamesValue>(*this, other);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to