Title: [133324] trunk/Source/WebCore
- Revision
- 133324
- Author
- o...@chromium.org
- Date
- 2012-11-02 11:53:00 -0700 (Fri, 02 Nov 2012)
Log Message
Fix silly mistake from http://trac.webkit.org/changeset/133315.
Forgot to remove the "!".
* css/StyleResolver.cpp:
(WebCore::StyleResolver::canShareStyleWithElement):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (133323 => 133324)
--- trunk/Source/WebCore/ChangeLog 2012-11-02 18:50:57 UTC (rev 133323)
+++ trunk/Source/WebCore/ChangeLog 2012-11-02 18:53:00 UTC (rev 133324)
@@ -1,3 +1,11 @@
+2012-11-02 Ojan Vafai <o...@chromium.org>
+
+ Fix silly mistake from http://trac.webkit.org/changeset/133315.
+ Forgot to remove the "!".
+
+ * css/StyleResolver.cpp:
+ (WebCore::StyleResolver::canShareStyleWithElement):
+
2012-11-02 Tom Sepez <tse...@chromium.org>
Support X-XSS-Protection: report=URL header syntax in XSSAuditor.
Modified: trunk/Source/WebCore/css/StyleResolver.cpp (133323 => 133324)
--- trunk/Source/WebCore/css/StyleResolver.cpp 2012-11-02 18:50:57 UTC (rev 133323)
+++ trunk/Source/WebCore/css/StyleResolver.cpp 2012-11-02 18:53:00 UTC (rev 133324)
@@ -1214,7 +1214,7 @@
#if ENABLE(PROGRESS_ELEMENT)
if (element->hasTagName(progressTag)) {
- ASSERT(!m_element->hasTagName(progressTag));
+ ASSERT(m_element->hasTagName(progressTag));
HTMLProgressElement* thisProgressElement = static_cast<HTMLProgressElement*>(element);
HTMLProgressElement* otherProgressElement = static_cast<HTMLProgressElement*>(m_element);
if (thisProgressElement->isDeterminate() != otherProgressElement->isDeterminate())
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes