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

Unified Diff: LayoutTests/fast/css3-text/css3-text-indent/text-indent-each-line.html

Issue 22336008: Use the runtime flag and remove '-webkit-' prefix for CSS3 text-indent. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch Created 7 years, 4 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: LayoutTests/fast/css3-text/css3-text-indent/text-indent-each-line.html
diff --git a/LayoutTests/fast/css3-text/css3-text-indent/text-indent-each-line.html b/LayoutTests/fast/css3-text/css3-text-indent/text-indent-each-line.html
index bd4b014afcb02e027b494ef55d400c4fa703ab70..0e1b3aaa373533d4866986eb24b12cc0a974b1b9 100644
--- a/LayoutTests/fast/css3-text/css3-text-indent/text-indent-each-line.html
+++ b/LayoutTests/fast/css3-text/css3-text-indent/text-indent-each-line.html
@@ -4,7 +4,7 @@
<style>
div { width:80px; font: 10px Ahem; background-color:lightgray; }
.normal { text-indent: 4em; }
- .eachline { width:80px; text-indent: 4em -webkit-each-line; }
+ .eachline { width:80px; text-indent: 4em each-line; }
.indent { color: blue; }
</style>
</head
@@ -19,17 +19,17 @@ all blue boxes should be right-aligned.
<span class="indent">xxxx</span><br>xxxx<br>xxxx
</div>
<br>
-<!-- -webkit-each-line with a soft wrap break -->
+<!-- each-line with a soft wrap break -->
<div class="eachline">
<span class="indent">xxxx</span> xxxx xxxx
</div>
<br>
-<!-- -webkit-each-line with a forced line break -->
+<!-- each-line with a forced line break -->
<div class="eachline">
<span class="indent">xxxx</span><br><span class="indent">xxxx</span><br><span class="indent">xxxx</span>
</div>
<br>
-<!-- -webkit-each-line with a soft wrap break and a forced line break -->
+<!-- each-line with a soft wrap break and a forced line break -->
<div class="eachline">
<span class="indent">xxxx</span> xxxx<br><span class="indent">xxxx</span>
</div>

Powered by Google App Engine
This is Rietveld 408576698