Index: LayoutTests/fast/css/shorthand-setProperty-important.html |
diff --git a/LayoutTests/fast/css/shorthand-setProperty-important.html b/LayoutTests/fast/css/shorthand-setProperty-important.html |
index 0e3ff4a090ea8f828e40ae869c1609b69c3c2816..c0e00ca859eaaa1f61c83e8dfaaf90949ccc8c69 100644 |
--- a/LayoutTests/fast/css/shorthand-setProperty-important.html |
+++ b/LayoutTests/fast/css/shorthand-setProperty-important.html |
@@ -19,12 +19,12 @@ e = document.getElementById('test'); |
// Test "important" strictness |
e.style.borderBottomStyle = ""; |
e.style.setProperty("border-bottom-style", "solid", "!important"); |
-shouldBe("e.style.getPropertyValue('border-bottom-style')", "null"); |
+shouldBeEqualToString("e.style.getPropertyValue('border-bottom-style')", ""); |
shouldBe("e.style.getPropertyPriority('border-bottom-style')", "''"); |
e.style.borderBottomStyle = ""; |
e.style.setProperty("border-bottom-style", "solid", "very important"); |
-shouldBe("e.style.getPropertyValue('border-bottom-style')", "null"); |
+shouldBeEqualToString("e.style.getPropertyValue('border-bottom-style')", ""); |
shouldBe("e.style.getPropertyPriority('border-bottom-style')", "''"); |
e.style.borderBottomStyle = ""; |
@@ -34,12 +34,12 @@ shouldBe("e.style.getPropertyPriority('border-bottom-style')", "'important'"); |
e.style.borderBottomStyle = ""; |
e.style.setProperty("border-bottom-style", "solid", "random"); |
-shouldBe("e.style.getPropertyValue('border-bottom-style')", "null"); |
+shouldBeEqualToString("e.style.getPropertyValue('border-bottom-style')", ""); |
shouldBe("e.style.getPropertyPriority('border-bottom-style')", "''"); |
e.style.borderBottomStyle = ""; |
e.style.setProperty("border-bottom-style", "solid", "undefined"); |
-shouldBe("e.style.getPropertyValue('border-bottom-style')", "null"); |
+shouldBeEqualToString("e.style.getPropertyValue('border-bottom-style')", ""); |
shouldBe("e.style.getPropertyPriority('border-bottom-style')", "''"); |
e.style.borderBottomStyle = ""; |