Title: [121279] trunk/Source/WebCore
Revision
121279
Author
[email protected]
Date
2012-06-26 12:40:08 -0700 (Tue, 26 Jun 2012)

Log Message

Crash in FixedTableLayout::layout
https://bugs.webkit.org/show_bug.cgi?id=88676

Unreviewed typo fix, pointed out by Darin Adler.

* rendering/AutoTableLayout.cpp:
(WebCore::AutoTableLayout::layout):
* rendering/FixedTableLayout.cpp:
(WebCore::FixedTableLayout::layout):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (121278 => 121279)


--- trunk/Source/WebCore/ChangeLog	2012-06-26 19:36:50 UTC (rev 121278)
+++ trunk/Source/WebCore/ChangeLog	2012-06-26 19:40:08 UTC (rev 121279)
@@ -1,3 +1,15 @@
+2012-06-26  Julien Chaffraix  <[email protected]>
+
+        Crash in FixedTableLayout::layout
+        https://bugs.webkit.org/show_bug.cgi?id=88676
+
+        Unreviewed typo fix, pointed out by Darin Adler.
+
+        * rendering/AutoTableLayout.cpp:
+        (WebCore::AutoTableLayout::layout):
+        * rendering/FixedTableLayout.cpp:
+        (WebCore::FixedTableLayout::layout):
+
 2012-06-26  Adam Klein  <[email protected]>
 
         MutationObserver.observe should treat a null or undefined options argument as empty

Modified: trunk/Source/WebCore/rendering/AutoTableLayout.cpp (121278 => 121279)


--- trunk/Source/WebCore/rendering/AutoTableLayout.cpp	2012-06-26 19:36:50 UTC (rev 121278)
+++ trunk/Source/WebCore/rendering/AutoTableLayout.cpp	2012-06-26 19:40:08 UTC (rev 121279)
@@ -502,7 +502,7 @@
     // This means that our preferred logical widths were not recomputed as expected.
     if (nEffCols != m_layoutStruct.size()) {
         fullRecalc();
-        // FIXME: Table layout shouldn't modify our table structure (but does due to columns and colum-groups).
+        // FIXME: Table layout shouldn't modify our table structure (but does due to columns and column-groups).
         nEffCols = m_table->numEffCols();
     }
 

Modified: trunk/Source/WebCore/rendering/FixedTableLayout.cpp (121278 => 121279)


--- trunk/Source/WebCore/rendering/FixedTableLayout.cpp	2012-06-26 19:36:50 UTC (rev 121278)
+++ trunk/Source/WebCore/rendering/FixedTableLayout.cpp	2012-06-26 19:40:08 UTC (rev 121279)
@@ -212,7 +212,7 @@
     // This means that our preferred logical widths were not recomputed as expected.
     if (nEffCols != m_width.size()) {
         calcWidthArray(tableLogicalWidth);
-        // FIXME: Table layout shouldn't modify our table structure (but does due to columns and colum-groups).
+        // FIXME: Table layout shouldn't modify our table structure (but does due to columns and column-groups).
         nEffCols = m_table->numEffCols();
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to