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

Unified Diff: LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style.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-style.html
diff --git a/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style.html b/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style.html
index 70da25b73ce2338999ebb2a8064cd7c184fdc9a7..e665534a457f46b88ef6c4692e1a4dfad25cb5d5 100644
--- a/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style.html
+++ b/LayoutTests/fast/css3-text/css3-text-decoration/text-decoration-style.html
@@ -15,14 +15,14 @@
div.double { border: 5px double; }
div.dashed { border: 5px dashed; }
div.dotted { border: 5px dotted; }
- span.underline { -webkit-text-decoration-line: underline; }
- span.overline { -webkit-text-decoration-line: overline; }
- span.line-through { -webkit-text-decoration-line: line-through; }
- span.solid { -webkit-text-decoration-style: solid; }
- span.double { -webkit-text-decoration-style: double; }
- span.dashed { -webkit-text-decoration-style: dashed; }
- span.dotted { -webkit-text-decoration-style: dotted; }
- span.wavy { -webkit-text-decoration-style: wavy; }
+ span.underline { text-decoration-line: underline; }
+ span.overline { text-decoration-line: overline; }
+ span.line-through { text-decoration-line: line-through; }
+ span.solid { text-decoration-style: solid; }
+ span.double { text-decoration-style: double; }
+ span.dashed { text-decoration-style: dashed; }
+ span.dotted { text-decoration-style: dotted; }
+ span.wavy { text-decoration-style: wavy; }
</style>
</head>
<body style="font: 20px Ahem; -webkit-font-smoothing: none; -webkit-text-stroke: 1px black; -webkit-text-fill-color: white;">

Powered by Google App Engine
This is Rietveld 408576698