Title: [115102] trunk/Source/WebCore
- Revision
- 115102
- Author
- [email protected]
- Date
- 2012-04-24 13:23:27 -0700 (Tue, 24 Apr 2012)
Log Message
Fix wrong ASSERT() in findAttributeInVector()
https://bugs.webkit.org/show_bug.cgi?id=84756
Unreviewed build fix.
* dom/ElementAttributeData.h:
(WebCore::findAttributeInVector):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (115101 => 115102)
--- trunk/Source/WebCore/ChangeLog 2012-04-24 20:15:02 UTC (rev 115101)
+++ trunk/Source/WebCore/ChangeLog 2012-04-24 20:23:27 UTC (rev 115102)
@@ -1,3 +1,13 @@
+2012-04-24 Caio Marcelo de Oliveira Filho <[email protected]>
+
+ Fix wrong ASSERT() in findAttributeInVector()
+ https://bugs.webkit.org/show_bug.cgi?id=84756
+
+ Unreviewed build fix.
+
+ * dom/ElementAttributeData.h:
+ (WebCore::findAttributeInVector):
+
2012-04-24 Anders Carlsson <[email protected]>
Update the scroll layer position on the main thread when viewing full-frame images
Modified: trunk/Source/WebCore/dom/ElementAttributeData.h (115101 => 115102)
--- trunk/Source/WebCore/dom/ElementAttributeData.h 2012-04-24 20:15:02 UTC (rev 115101)
+++ trunk/Source/WebCore/dom/ElementAttributeData.h 2012-04-24 20:23:27 UTC (rev 115102)
@@ -38,7 +38,6 @@
inline Attribute* findAttributeInVector(const Vector<Attribute>& attributes, const QualifiedName& name)
{
- ASSERT(attributes);
for (unsigned i = 0; i < attributes.size(); ++i) {
if (attributes.at(i).name().matches(name))
return &const_cast<Vector<Attribute>& >(attributes).at(i);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes