Crash in FixedTableLayout::layout
authorjchaffraix@webkit.org <jchaffraix@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 26 Jun 2012 19:40:08 +0000 (19:40 +0000)
committerjchaffraix@webkit.org <jchaffraix@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Tue, 26 Jun 2012 19:40:08 +0000 (19:40 +0000)
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):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@121279 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebCore/ChangeLog
Source/WebCore/rendering/AutoTableLayout.cpp
Source/WebCore/rendering/FixedTableLayout.cpp

index cfa74b3..4e3d943 100755 (executable)
@@ -1,3 +1,15 @@
+2012-06-26  Julien Chaffraix  <jchaffraix@webkit.org>
+
+        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  <adamk@chromium.org>
 
         MutationObserver.observe should treat a null or undefined options argument as empty
index b0a137d..019b11d 100644 (file)
@@ -502,7 +502,7 @@ void AutoTableLayout::layout()
     // 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();
     }
 
index 7b08daf..8649a08 100644 (file)
@@ -212,7 +212,7 @@ void FixedTableLayout::layout()
     // 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();
     }