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

Unified Diff: LayoutTests/fast/css3-text/css3-text-decoration/text-underline-position/style.css

Issue 40733004: Replace compile flag with runtime check for text-underline-position (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Julien's review #2 (rebased) Created 7 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: LayoutTests/fast/css3-text/css3-text-decoration/text-underline-position/style.css
diff --git a/LayoutTests/fast/css3-text/css3-text-decoration/text-underline-position/style.css b/LayoutTests/fast/css3-text/css3-text-decoration/text-underline-position/style.css
index d350a717df1f836b274e7291712063b07775bc23..2d84f27822d0d22cd03e069dcfe8f97fbefd2426 100644
--- a/LayoutTests/fast/css3-text/css3-text-decoration/text-underline-position/style.css
+++ b/LayoutTests/fast/css3-text/css3-text-decoration/text-underline-position/style.css
@@ -9,39 +9,39 @@ div {
}
div.auto {
- -webkit-text-decoration-style: solid;
- -webkit-text-decoration-line: underline;
- -webkit-text-underline-position: auto;
+ text-decoration-style: solid;
+ text-decoration-line: underline;
+ text-underline-position: auto;
}
div.alphabetic {
- -webkit-text-decoration-style: solid;
- -webkit-text-decoration-line: underline;
- -webkit-text-underline-position: alphabetic;
+ text-decoration-style: solid;
+ text-decoration-line: underline;
+ text-underline-position: alphabetic;
}
div.under {
- -webkit-text-decoration-style: solid;
- -webkit-text-decoration-line: underline;
- -webkit-text-underline-position: under;
+ text-decoration-style: solid;
+ text-decoration-line: underline;
+ text-underline-position: under;
}
span.auto {
- -webkit-text-decoration-style: solid;
- -webkit-text-decoration-line: underline;
- -webkit-text-underline-position: auto;
+ text-decoration-style: solid;
+ text-decoration-line: underline;
+ text-underline-position: auto;
}
span.alphabetic {
- -webkit-text-decoration-style: solid;
- -webkit-text-decoration-line: underline;
- -webkit-text-underline-position: alphabetic;
+ text-decoration-style: solid;
+ text-decoration-line: underline;
+ text-underline-position: alphabetic;
}
span.under {
- -webkit-text-decoration-style: solid;
- -webkit-text-decoration-line: underline;
- -webkit-text-underline-position: under;
+ text-decoration-style: solid;
+ text-decoration-line: underline;
+ text-underline-position: under;
}
.box {

Powered by Google App Engine
This is Rietveld 408576698