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

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: CL Description change, Typo patch apply to upstream master. Created 5 years 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 4a4b9abf8847ed79ba69e19126a56df01e568479..db3d79c780f50106c8c3ce317dcda899680858ad 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