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

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

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-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-point-expected.txt b/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-point-expected.txt
index f85d33fd122d191e1464ce88e6c860c54f8be499..dd9b2a6177bdd5c50e64fc302813c776d0f8d26d 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-point-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-point-expected.txt
@@ -16,36 +16,6 @@ PASS point.y is 2
PASS point.z is 1
PASS point.w is 6
-# DOMPoint({ x : 2 })
-PASS point.x is 2
-PASS point.y is 0
-PASS point.z is 0
-PASS point.w is 1
-
-# DOMPoint({ y : 2 })
-PASS point.x is 0
-PASS point.y is 2
-PASS point.z is 0
-PASS point.w is 1
-
-# DOMPoint({ z : 2 })
-PASS point.x is 0
-PASS point.y is 0
-PASS point.z is 2
-PASS point.w is 1
-
-# DOMPoint({ w : 2 })
-PASS point.x is 0
-PASS point.y is 0
-PASS point.z is 0
-PASS point.w is 2
-
-# DOMPoint({ x : 2, y : 3, z : 4, w : 5 })
-PASS point.x is 2
-PASS point.y is 3
-PASS point.z is 4
-PASS point.w is 5
-
# DOMPoint()
PASS point.x is 0
PASS point.y is 0

Powered by Google App Engine
This is Rietveld 408576698