Index: LayoutTests/fast/dom/prototypes.html |
diff --git a/LayoutTests/fast/dom/prototypes.html b/LayoutTests/fast/dom/prototypes.html |
index 8ce3ae48487f49f532b9b12fe407dd2946f37bfc..6400191461e60b3353d14cf3e8bdb01f5dfb832a 100644 |
--- a/LayoutTests/fast/dom/prototypes.html |
+++ b/LayoutTests/fast/dom/prototypes.html |
@@ -34,18 +34,6 @@ function test() |
shouldBe("Object.prototype.isPrototypeOf(window.DOMException)", true); |
shouldBe("Object.prototype.isPrototypeOf(window.Option)", true); |
- div = document.createElement('div'); |
- div.style.color = "rgb(0, 0, 0)"; |
- cssValue = div.style.getPropertyCSSValue('color'); // actually a CSSPrimitiveValue |
- shouldBe("Object.prototype.isPrototypeOf(cssValue)", true); |
- |
- rgbColor = div.style.getPropertyCSSValue('color').getRGBColorValue(); |
- shouldBe("Object.prototype.isPrototypeOf(rgbColor)", true); |
- |
- div.style.clip = "rect(0, 0, 0, 0)"; |
- rect = div.style.getPropertyCSSValue('clip').getRectValue(); |
- shouldBe("Object.prototype.isPrototypeOf(rect)", true); |
- |
styleElement = document.createElement('style'); |
styleElement.appendChild(document.createTextNode("* {}")); |
headElement = document.getElementsByTagName('head')[0]; |