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

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

Issue 2611713002: Rewrite the layout test for DOMRect interface. (Closed)
Patch Set: Rewrite the layout test for DOMRect interface. Created 3 years, 11 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-rect-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-rect-expected.txt b/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-rect-expected.txt
deleted file mode 100644
index 6c8e8acb8f65039d38a56bd6feabca4dd6da5035..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-rect-expected.txt
+++ /dev/null
@@ -1,134 +0,0 @@
-# DOMRect()
-PASS rect.x is 0
-PASS rect.y is 0
-PASS rect.width is 0
-PASS rect.height is 0
-PASS rect.top is 0
-PASS rect.right is 0
-PASS rect.bottom is 0
-PASS rect.left is 0
-PASS rect.top is rect.y
-PASS rect.right is rect.x + rect.width
-PASS rect.bottom is rect.y + rect.height
-PASS rect.left is rect.x
-
-# DOMRect(10)
-PASS rect.x is 10
-PASS rect.y is 0
-PASS rect.width is 0
-PASS rect.height is 0
-PASS rect.top is 0
-PASS rect.right is 10
-PASS rect.bottom is 0
-PASS rect.left is 10
-PASS rect.top is rect.y
-PASS rect.right is rect.x + rect.width
-PASS rect.bottom is rect.y + rect.height
-PASS rect.left is rect.x
-
-# DOMRect(10, 20)
-PASS rect.x is 10
-PASS rect.y is 20
-PASS rect.width is 0
-PASS rect.height is 0
-PASS rect.top is 20
-PASS rect.right is 10
-PASS rect.bottom is 20
-PASS rect.left is 10
-PASS rect.top is rect.y
-PASS rect.right is rect.x + rect.width
-PASS rect.bottom is rect.y + rect.height
-PASS rect.left is rect.x
-
-# DOMRect(10, 20, 80)
-PASS rect.x is 10
-PASS rect.y is 20
-PASS rect.width is 80
-PASS rect.height is 0
-PASS rect.top is 20
-PASS rect.right is 90
-PASS rect.bottom is 20
-PASS rect.left is 10
-PASS rect.top is rect.y
-PASS rect.right is rect.x + rect.width
-PASS rect.bottom is rect.y + rect.height
-PASS rect.left is rect.x
-
-# DOMRect(10, 20, 80, 50)
-PASS rect.x is 10
-PASS rect.y is 20
-PASS rect.width is 80
-PASS rect.height is 50
-PASS rect.top is 20
-PASS rect.right is 90
-PASS rect.bottom is 70
-PASS rect.left is 10
-PASS rect.top is rect.y
-PASS rect.right is rect.x + rect.width
-PASS rect.bottom is rect.y + rect.height
-PASS rect.left is rect.x
-
-# DOMRect setter
-PASS rect.x is 30
-PASS rect.left is 30
-PASS rect.width is 80
-PASS rect.right is 110
-PASS rect.y is -10
-PASS rect.top is -10
-PASS rect.height is 50
-PASS rect.bottom is 40
-PASS rect.x is 30
-PASS rect.left is 30
-PASS rect.width is 20
-PASS rect.right is 50
-PASS rect.y is -10
-PASS rect.top is -10
-PASS rect.height is 40
-PASS rect.bottom is 30
-
-# DOMRect(10, 20, -80, -50) negative width and height
-PASS rect.x is 10
-PASS rect.y is 20
-PASS rect.width is -80
-PASS rect.height is -50
-PASS rect.top is -30
-PASS rect.right is 10
-PASS rect.bottom is 20
-PASS rect.left is -70
-PASS rect.top is rect.y + rect.height
-PASS rect.right is rect.x
-PASS rect.bottom is rect.y
-PASS rect.left is rect.x + rect.width
-
-# DOMRectReadOnly(10, 20, 80, 50)
-PASS rect.x is 10
-PASS rect.y is 20
-PASS rect.width is 80
-PASS rect.height is 50
-PASS rect.top is 20
-PASS rect.right is 90
-PASS rect.bottom is 70
-PASS rect.left is 10
-PASS rect.top is rect.y
-PASS rect.right is rect.x + rect.width
-PASS rect.bottom is rect.y + rect.height
-PASS rect.left is rect.x
-
-# DOMRectReadOnly readonly test
-PASS rect.x is 10
-PASS rect.y is 20
-PASS rect.width is 80
-PASS rect.height is 50
-PASS rect.top is 20
-PASS rect.right is 90
-PASS rect.bottom is 70
-PASS rect.left is 10
-PASS rect.top is rect.y
-PASS rect.right is rect.x + rect.width
-PASS rect.bottom is rect.y + rect.height
-PASS rect.left is rect.x
-
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698