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

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

Issue 1710003002: Unprefix multicol properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase master Created 4 years, 10 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/layout/LayoutMultiColumnFlowThreadTest.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThreadTest.cpp b/third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThreadTest.cpp
index e687e827c075e397134caf3d22b0ecc77ce076b8..dda940e7d5cb07a18636765d06d4a2431d2cb515 100644
--- a/third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThreadTest.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThreadTest.cpp
@@ -58,8 +58,8 @@ void MultiColumnRenderingTest::setMulticolHTML(const String& html)
{
const char* style =
"<style>"
- " #mc { -webkit-columns:2; }"
- " .s, #spanner, #spanner1, #spanner2 { -webkit-column-span:all; }"
+ " #mc { columns:2; }"
+ " .s, #spanner, #spanner1, #spanner2 { column-span:all; }"
"</style>";
setBodyInnerHTML(style + html);
}

Powered by Google App Engine
This is Rietveld 408576698