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) |