| 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");
|
|
|