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

Unified Diff: LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify.html

Issue 709193003: Don't require getPropertyCSSValue in css3-text getComputedStyle tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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-justify/getComputedStyle/getComputedStyle-text-justify.html
diff --git a/LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify.html b/LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify.html
index b4873db613a8cb038e3a1cf620dcb95c129678cf..cb4e4db3243bfaab2a3da70d4b3cea5e44a8470f 100644
--- a/LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify.html
+++ b/LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify.html
@@ -11,14 +11,12 @@
function testElementStyle(value)
{
shouldBe("element.style.textJustify", "'" + value + "'");
- shouldBe("element.style.getPropertyCSSValue('text-justify').cssText", "'" + value + "'");
}
function testComputedStyle(value)
{
computedStyle = window.getComputedStyle(element, null);
shouldBe("computedStyle.textJustify", "'" + value + "'");
- shouldBe("computedStyle.getPropertyCSSValue('text-justify').cssText", "'" + value + "'");
}
function valueSettingTest(value)

Powered by Google App Engine
This is Rietveld 408576698