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

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

Issue 1412803007: Parse text-decoration shorthand in CSSPropertyParser with CSSParserTokens (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch for landing Created 5 years, 1 month 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/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-line.html
diff --git a/third_party/WebKit/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-line.html b/third_party/WebKit/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-line.html
index 766982c89716a35cc775f19b47a9420a37852b7f..351b952216ff9d65df6fe38d0f55c47366d6cd30 100644
--- a/third_party/WebKit/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-line.html
+++ b/third_party/WebKit/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-line.html
@@ -25,5 +25,9 @@
<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>
+ <div style="text-decoration-line: blink blink;">This text contains no decorations.</div><br/>
+ <div style="text-decoration-line: blink underline blink;">This text contains no decorations.</div><br/>
+ <div style="text-decoration-line: blink underline overline blink;">This text contains no decorations.</div><br/>
+ <div style="text-decoration-line: blink underline overline line-through blink;">This text contains no decorations.</div><br/>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698