Title: [142472] trunk/Source/WebCore
Revision
142472
Author
commit-qu...@webkit.org
Date
2013-02-11 07:44:27 -0800 (Mon, 11 Feb 2013)

Log Message

[QT] Regression (r142444): Broke qt linux minimal build
https://bugs.webkit.org/show_bug.cgi?id=109423

Patch by Alexander Shalamov <alexander.shala...@intel.com> on 2013-02-11
Reviewed by Kenneth Rohde Christiansen.

Test: cssom/cssvalue-comparison.html

* css/CSSValue.cpp:
(WebCore::CSSValue::equals):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (142471 => 142472)


--- trunk/Source/WebCore/ChangeLog	2013-02-11 15:40:18 UTC (rev 142471)
+++ trunk/Source/WebCore/ChangeLog	2013-02-11 15:44:27 UTC (rev 142472)
@@ -1,3 +1,15 @@
+2013-02-11  Alexander Shalamov  <alexander.shala...@intel.com>
+
+        [QT] Regression (r142444): Broke qt linux minimal build
+        https://bugs.webkit.org/show_bug.cgi?id=109423
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Test: cssom/cssvalue-comparison.html
+
+        * css/CSSValue.cpp:
+        (WebCore::CSSValue::equals):
+
 2013-02-11  Andrey Lushnikov  <lushni...@chromium.org>
 
         Web Inspector: introduce WebInspector.TextUtils

Modified: trunk/Source/WebCore/css/CSSValue.cpp (142471 => 142472)


--- trunk/Source/WebCore/css/CSSValue.cpp	2013-02-11 15:40:18 UTC (rev 142471)
+++ trunk/Source/WebCore/css/CSSValue.cpp	2013-02-11 15:44:27 UTC (rev 142472)
@@ -369,8 +369,10 @@
         case WebKitCSSSVGDocumentClass:
             return compareCSSValues<WebKitCSSSVGDocumentValue>(*this, other);
 #endif
+        default:
+            ASSERT_NOT_REACHED();
+            return false;
         }
-        ASSERT_NOT_REACHED();
     } else if (m_classType == ValueListClass && other.m_classType != ValueListClass)
         return static_cast<const CSSValueList*>(this)->equals(other);
     else if (m_classType != ValueListClass && other.m_classType == ValueListClass)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to