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

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

Issue 14576017: Implement CSS3TextDecorations runtime flag in favor of CSS3_TEXT (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed updated on text-underline-position for now (to be discussed & re-added later) Created 7 years, 7 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-decoration/text-decoration-line.html
diff --git a/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-line.html b/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-line.html
index 4d44b1704d95ce7bbe52e490858bf7bfa53bc739..766982c89716a35cc775f19b47a9420a37852b7f 100644
--- a/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-line.html
+++ b/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-line.html
@@ -9,21 +9,21 @@
</style>
</head>
<body>
- <div>Each line of this test should match its style description (<i>-webkit-text-decoration-line</i> resets <i>text-decoration</i>, except when the latter is set as <i>important</i>):</div><br/>
- <div style="-webkit-text-decoration-line: underline;">This text is underlined <span class="none">(also inside span).</span></div><br/>
- <div style="-webkit-text-decoration-line: overline;">This text is overlined <span class="none">(also inside span).</span></div><br/>
- <div style="-webkit-text-decoration-line: line-through;">This text has a line-through <span class="none">(also inside span).</span></div><br/>
- <div class="underline" style="-webkit-text-decoration-line: none;">This text contains no decorations.</div><br/>
- <div class="underline" style="-webkit-text-decoration-line: underline;">This text is underlined.</div><br/>
- <div class="overline" style="-webkit-text-decoration-line: none;">This text contains no decorations.</div><br/>
- <div class="overline" style="-webkit-text-decoration-line: overline;">This text is overlined.</div><br/>
- <div class="line-through" style="-webkit-text-decoration-line: none;">This text contains no decorations.</div><br/>
- <div class="line-through" style="-webkit-text-decoration-line: line-through;">This text has a line-through.</div><br/>
- <div class="all-decorations" style="-webkit-text-decoration-line: none;">This text contains no decorations.</div><br/>
- <div class="all-decorations" style="-webkit-text-decoration-line: underline overline line-through;">This text is underlined, overlined and has a line-through.</div><br/>
- <div style="-webkit-text-decoration-line: underline; text-decoration: none !important;">This text contains no decorations.</div><br/>
- <div style="-webkit-text-decoration-line: underline; text-decoration: overline !important;">This text is overlined.</div><br/>
- <div style="-webkit-text-decoration-line: underline !important; text-decoration: overline !important;">This text is overlined.</div><br/>
- <div style="text-decoration: overline !important; -webkit-text-decoration-line: underline !important;">This text is underlined.</div>
+ <div>Each line of this test should match its style description (<i>text-decoration-line</i> resets <i>text-decoration</i>, except when the latter is set as <i>important</i>):</div><br/>
+ <div style="text-decoration-line: underline;">This text is underlined <span class="none">(also inside span).</span></div><br/>
+ <div style="text-decoration-line: overline;">This text is overlined <span class="none">(also inside span).</span></div><br/>
+ <div style="text-decoration-line: line-through;">This text has a line-through <span class="none">(also inside span).</span></div><br/>
+ <div class="underline" style="text-decoration-line: none;">This text contains no decorations.</div><br/>
+ <div class="underline" style="text-decoration-line: underline;">This text is underlined.</div><br/>
+ <div class="overline" style="text-decoration-line: none;">This text contains no decorations.</div><br/>
+ <div class="overline" style="text-decoration-line: overline;">This text is overlined.</div><br/>
+ <div class="line-through" style="text-decoration-line: none;">This text contains no decorations.</div><br/>
+ <div class="line-through" style="text-decoration-line: line-through;">This text has a line-through.</div><br/>
+ <div class="all-decorations" style="text-decoration-line: none;">This text contains no decorations.</div><br/>
+ <div class="all-decorations" style="text-decoration-line: underline overline line-through;">This text is underlined, overlined and has a line-through.</div><br/>
+ <div style="text-decoration-line: underline; text-decoration: none !important;">This text contains no decorations.</div><br/>
+ <div style="text-decoration-line: underline; text-decoration: overline !important;">This text is overlined.</div><br/>
+ <div style="text-decoration-line: underline !important; text-decoration: overline !important;">This text is overlined.</div><br/>
+ <div style="text-decoration: overline !important; text-decoration-line: underline !important;">This text is underlined.</div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698