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

Unified Diff: third_party/WebKit/Source/core/dom/Text.cpp

Issue 2614883007: Change computed style enums to be prefixed with 'k'. (Closed)
Patch Set: Rebase on ToT. Created 3 years, 11 months 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/dom/Text.cpp
diff --git a/third_party/WebKit/Source/core/dom/Text.cpp b/third_party/WebKit/Source/core/dom/Text.cpp
index e6bae08f95ff59a2a659932b9eecba76cda099b8..a105811975803ddc44edf75f845d6386a3f5d22c 100644
--- a/third_party/WebKit/Source/core/dom/Text.cpp
+++ b/third_party/WebKit/Source/core/dom/Text.cpp
@@ -273,7 +273,7 @@ bool Text::textLayoutObjectIsNeeded(const ComputedStyle& style,
return false;
// pre-wrap in SVG never makes layoutObject.
- if (style.whiteSpace() == EWhiteSpace::PreWrap && parent.isSVG())
+ if (style.whiteSpace() == EWhiteSpace::kPreWrap && parent.isSVG())
return false;
// pre/pre-wrap/pre-line always make layoutObjects.
« no previous file with comments | « third_party/WebKit/Source/core/dom/Element.cpp ('k') | third_party/WebKit/Source/core/editing/EditingUtilities.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698