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

Side by Side Diff: LayoutTests/fast/dom/geometry-interfaces-dom-point-expected.txt

Issue 404803002: Implement DOMPoint of geometry interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 5 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
« no previous file with comments | « LayoutTests/fast/dom/geometry-interfaces-dom-point.html ('k') | Source/core/core.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # DOMPoint(2, 3)
2 PASS point.x is 2
3 PASS point.y is 3
4 PASS point.z is 0
5 PASS point.w is 1
6
7 # DOMPoint(5, 7, 9)
8 PASS point.x is 5
9 PASS point.y is 7
10 PASS point.z is 9
11 PASS point.w is 1
12
13 # DOMPoint(8, 2, 1, 6)
14 PASS point.x is 8
15 PASS point.y is 2
16 PASS point.z is 1
17 PASS point.w is 6
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()
50 PASS point.x is 0
51 PASS point.y is 0
52 PASS point.z is 0
53 PASS point.w is 1
54
55 # DOMPoint setter
56 PASS point.x is 10
57 PASS point.y is 20
58 PASS point.z is 30
59 PASS point.w is 40
60
61 # DOMPointReadOnly(10, 20, 30, 40)
62 PASS point.x is 10
63 PASS point.y is 20
64 PASS point.z is 30
65 PASS point.w is 40
66
67 # DOMPointReadOnly readonly test
68 PASS point.x is 10
69 PASS point.y is 20
70 PASS point.z is 30
71 PASS point.w is 40
72 PASS successfullyParsed is true
73
74 TEST COMPLETE
75
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/geometry-interfaces-dom-point.html ('k') | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698