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

Side by Side Diff: third_party/WebKit/LayoutTests/device_orientation/motion/optional-event-properties-expected.txt

Issue 2677603003: Move DeviceMotion and DeviceOrientation out from fast/dom/. (Closed)
Patch Set: device_orientation Created 3 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 Tests the optional properties of DeviceMotionEvent. Each property should be null if not set, or set to null or undefined. 1 Tests the optional properties of DeviceMotionEvent. Each property should be null if not set, or set to null or undefined.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 event = document.createEvent('DeviceMotionEvent') 6 event = document.createEvent('DeviceMotionEvent')
7 PASS event.acceleration == null is true 7 PASS event.acceleration == null is true
8 PASS event.accelerationIncludingGravity == null is true 8 PASS event.accelerationIncludingGravity == null is true
9 PASS event.rotationRate == null is true 9 PASS event.rotationRate == null is true
10 PASS event.interval == null is true 10 PASS event.interval == null is true
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 PASS event.accelerationIncludingGravity.y == null is true 90 PASS event.accelerationIncludingGravity.y == null is true
91 PASS event.accelerationIncludingGravity.z == 2 is true 91 PASS event.accelerationIncludingGravity.z == 2 is true
92 PASS event.rotationRate.alpha == null is true 92 PASS event.rotationRate.alpha == null is true
93 PASS event.rotationRate.beta == null is true 93 PASS event.rotationRate.beta == null is true
94 PASS event.rotationRate.gamma == 3 is true 94 PASS event.rotationRate.gamma == 3 is true
95 PASS event.interval == null is true 95 PASS event.interval == null is true
96 PASS successfullyParsed is true 96 PASS successfullyParsed is true
97 97
98 TEST COMPLETE 98 TEST COMPLETE
99 99
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698