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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-point.html

Issue 1701283002: Implement DOMPoint using v8 extras. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months 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: third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-point.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-point.html b/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-point.html
index 3c531b9a3c38e1ec505568fc9bca0c706fa8de96..25e49244c10f2d7f30603c4dd1141231f7979588 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-point.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-point.html
@@ -32,46 +32,6 @@ shouldBe("point.z", "1");
shouldBe("point.w", "6");
debug("");
-debug("# DOMPoint({ x : 2 })");
-point = new DOMPoint({ x : 2 });
-shouldBe("point.x", "2");
-shouldBe("point.y", "0");
-shouldBe("point.z", "0");
-shouldBe("point.w", "1");
-debug("");
-
-debug("# DOMPoint({ y : 2 })");
-point = new DOMPoint({ y : 2 });
-shouldBe("point.x", "0");
-shouldBe("point.y", "2");
-shouldBe("point.z", "0");
-shouldBe("point.w", "1");
-debug("");
-
-debug("# DOMPoint({ z : 2 })");
-point = new DOMPoint({ z : 2 });
-shouldBe("point.x", "0");
-shouldBe("point.y", "0");
-shouldBe("point.z", "2");
-shouldBe("point.w", "1");
-debug("");
-
-debug("# DOMPoint({ w : 2 })");
-point = new DOMPoint({ w : 2 });
-shouldBe("point.x", "0");
-shouldBe("point.y", "0");
-shouldBe("point.z", "0");
-shouldBe("point.w", "2");
-debug("");
-
-debug("# DOMPoint({ x : 2, y : 3, z : 4, w : 5 })");
-point = new DOMPoint({ x : 2, y : 3, z : 4, w : 5 });
-shouldBe("point.x", "2");
-shouldBe("point.y", "3");
-shouldBe("point.z", "4");
-shouldBe("point.w", "5");
-debug("");
-
debug("# DOMPoint()");
point = new DOMPoint();
shouldBe("point.x", "0");
« no previous file with comments | « build/common.gypi ('k') | third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-point-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698