Index: LayoutTests/fast/css/shorthand-priority.html |
diff --git a/LayoutTests/fast/css/shorthand-priority.html b/LayoutTests/fast/css/shorthand-priority.html |
index 71920d1e4e6c309d643b093bae357d2c40ae3f1a..3990c8a0d076b49e408763b2b9851deb02f46b9a 100644 |
--- a/LayoutTests/fast/css/shorthand-priority.html |
+++ b/LayoutTests/fast/css/shorthand-priority.html |
@@ -17,7 +17,7 @@ testContainer.innerHTML = '<div id="test">hello</div>'; |
e = document.getElementById('test'); |
// Sanity check. |
-e.style.setProperty("border-bottom-style", "solid", "!important"); |
+e.style.setProperty("border-bottom-style", "solid", "important"); |
shouldBe("e.style.getPropertyValue('border-bottom-style')", "'solid'"); |
shouldBe("e.style.getPropertyPriority('border-bottom-style')", "'important'"); |
@@ -27,7 +27,7 @@ shouldBe("e.style.getPropertyValue('border')", "'20px solid green'"); |
shouldBe("e.style.getPropertyPriority('border')", "''"); |
e.style.border = ""; |
-e.style.setProperty("border", "20px solid green", "!important"); |
+e.style.setProperty("border", "20px solid green", "important"); |
shouldBe("e.style.getPropertyValue('border')", "'20px solid green'"); |
shouldBe("e.style.getPropertyPriority('border')", "'important'"); |