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

Unified Diff: LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/script-tests/getComputedStyle-text-indent-inherited.js

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/getComputedStyle/script-tests/getComputedStyle-text-indent-inherited.js
diff --git a/LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/script-tests/getComputedStyle-text-indent-inherited.js b/LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/script-tests/getComputedStyle-text-indent-inherited.js
index c3a7f000b01eaa741a04a68fb1de8f186a4cb107..a1f1021178632b2e60f9bc523ab91fbc9feef278 100644
--- a/LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/script-tests/getComputedStyle-text-indent-inherited.js
+++ b/LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/script-tests/getComputedStyle-text-indent-inherited.js
@@ -20,12 +20,12 @@ function inheritanceTest(ancestorValue)
testComputedStyle(ancestorValue, ancestorValue);
}
-description("This tests check that the value of text-indent is properly inherited to the child.");
+description("This test checks that the value of text-indent is properly inherited to the child.");
ancestor = document.getElementById('ancestor');
child = document.getElementById('child');
inheritanceTest("10px");
-inheritanceTest("10px -webkit-each-line");
+inheritanceTest("10px each-line");
-ownValueTest("10px -webkit-each-line", "10px");
+ownValueTest("10px each-line", "10px");

Powered by Google App Engine
This is Rietveld 408576698