Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Unified Diff: LayoutTests/fast/dom/prototypes.html

Issue 692433003: Don't require getPropertyCSSValue in fast tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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];
« no previous file with comments | « LayoutTests/fast/dom/non-numeric-values-numeric-parameters-expected.txt ('k') | LayoutTests/fast/dom/prototypes-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698