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

Side by Side 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 unified diff | Download patch
OLDNEW
1 # DOMPoint(2, 3) 1 # DOMPoint(2, 3)
2 PASS point.x is 2 2 PASS point.x is 2
3 PASS point.y is 3 3 PASS point.y is 3
4 PASS point.z is 0 4 PASS point.z is 0
5 PASS point.w is 1 5 PASS point.w is 1
6 6
7 # DOMPoint(5, 7, 9) 7 # DOMPoint(5, 7, 9)
8 PASS point.x is 5 8 PASS point.x is 5
9 PASS point.y is 7 9 PASS point.y is 7
10 PASS point.z is 9 10 PASS point.z is 9
11 PASS point.w is 1 11 PASS point.w is 1
12 12
13 # DOMPoint(8, 2, 1, 6) 13 # DOMPoint(8, 2, 1, 6)
14 PASS point.x is 8 14 PASS point.x is 8
15 PASS point.y is 2 15 PASS point.y is 2
16 PASS point.z is 1 16 PASS point.z is 1
17 PASS point.w is 6 17 PASS point.w is 6
18 18
19 # DOMPoint({ x : 2 })
20 PASS point.x is 2
21 PASS point.y is 0
22 PASS point.z is 0
23 PASS point.w is 1
24
25 # DOMPoint({ y : 2 })
26 PASS point.x is 0
27 PASS point.y is 2
28 PASS point.z is 0
29 PASS point.w is 1
30
31 # DOMPoint({ z : 2 })
32 PASS point.x is 0
33 PASS point.y is 0
34 PASS point.z is 2
35 PASS point.w is 1
36
37 # DOMPoint({ w : 2 })
38 PASS point.x is 0
39 PASS point.y is 0
40 PASS point.z is 0
41 PASS point.w is 2
42
43 # DOMPoint({ x : 2, y : 3, z : 4, w : 5 })
44 PASS point.x is 2
45 PASS point.y is 3
46 PASS point.z is 4
47 PASS point.w is 5
48
49 # DOMPoint() 19 # DOMPoint()
50 PASS point.x is 0 20 PASS point.x is 0
51 PASS point.y is 0 21 PASS point.y is 0
52 PASS point.z is 0 22 PASS point.z is 0
53 PASS point.w is 1 23 PASS point.w is 1
54 24
55 # DOMPoint setter 25 # DOMPoint setter
56 PASS point.x is 10 26 PASS point.x is 10
57 PASS point.y is 20 27 PASS point.y is 20
58 PASS point.z is 30 28 PASS point.z is 30
59 PASS point.w is 40 29 PASS point.w is 40
60 30
61 # DOMPointReadOnly(10, 20, 30, 40) 31 # DOMPointReadOnly(10, 20, 30, 40)
62 PASS point.x is 10 32 PASS point.x is 10
63 PASS point.y is 20 33 PASS point.y is 20
64 PASS point.z is 30 34 PASS point.z is 30
65 PASS point.w is 40 35 PASS point.w is 40
66 36
67 # DOMPointReadOnly readonly test 37 # DOMPointReadOnly readonly test
68 PASS point.x is 10 38 PASS point.x is 10
69 PASS point.y is 20 39 PASS point.y is 20
70 PASS point.z is 30 40 PASS point.z is 30
71 PASS point.w is 40 41 PASS point.w is 40
72 PASS successfullyParsed is true 42 PASS successfullyParsed is true
73 43
74 TEST COMPLETE 44 TEST COMPLETE
75 45
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698