Index: LayoutTests/webexposed/internal-properties-should-not-be-exposed.html |
diff --git a/LayoutTests/webexposed/internal-properties-should-not-be-exposed.html b/LayoutTests/webexposed/internal-properties-should-not-be-exposed.html |
index a63b02c4f68d75987210843de1ab88bdeba4289a..c539ddb0a851ad5e1f9105afcd5395dc875200c4 100644 |
--- a/LayoutTests/webexposed/internal-properties-should-not-be-exposed.html |
+++ b/LayoutTests/webexposed/internal-properties-should-not-be-exposed.html |
@@ -13,8 +13,8 @@ for (var property in internalProperties) { |
debug("Testing " + property); |
element = document.createElement("foo"); |
document.body.appendChild(element); |
- shouldBeNull("window.getComputedStyle(element).getPropertyValue(property)") |
- shouldBeUndefined("element.style[property]") |
+ shouldBeEqualToString("window.getComputedStyle(element).getPropertyValue(property)", ""); |
+ shouldBeUndefined("element.style[property]"); |
debug("Value after setting " + property + " to " + internalProperties[property]); |
element.style.setProperty(property, internalProperties[property]); |