Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(486)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTable.cpp

Issue 1444173002: third_party/WebKit: fix typos found in comments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/LayoutTable.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.cpp b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
index aa6cb8e5869177699f8d090ee3304660d7b9ff5f..9879c3077325ae7b6ecb1cde5af0952f93210eb6 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
@@ -298,7 +298,7 @@ void LayoutTable::updateLogicalWidth()
}
// Ensure we aren't smaller than our min preferred width. This MUST be done after 'max-width' as
- // we ignore it if it means we wouldn't accomodate our content.
+ // we ignore it if it means we wouldn't accommodate our content.
setLogicalWidth(std::max<int>(logicalWidth(), minPreferredLogicalWidth()));
// Ensure we aren't smaller than our min-width style.
@@ -314,7 +314,7 @@ void LayoutTable::updateLogicalWidth()
setMarginStart(marginValues.m_start);
setMarginEnd(marginValues.m_end);
- // We should NEVER shrink the table below the min-content logical width, or else the table can't accomodate
+ // We should NEVER shrink the table below the min-content logical width, or else the table can't accommodate
// its own content which doesn't match CSS nor what authors expect.
// FIXME: When we convert to sub-pixel layout for tables we can remove the int conversion
// https://code.google.com/p/chromium/issues/detail?id=241198

Powered by Google App Engine
This is Rietveld 408576698