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

Side by Side Diff: third_party/WebKit/LayoutTests/device_orientation/orientation/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 DeviceOrientationEvent. Each property should be null if not set, or set to null or undefined. 1 Tests the optional properties of DeviceOrientationEvent. 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('DeviceOrientationEvent') 6 event = document.createEvent('DeviceOrientationEvent')
7 PASS event.alpha == null is true 7 PASS event.alpha == null is true
8 PASS event.beta == null is true 8 PASS event.beta == null is true
9 PASS event.gamma == null is true 9 PASS event.gamma == null is true
10 PASS event.absolute is false 10 PASS event.absolute is false
(...skipping 29 matching lines...) Expand all
40 PASS event.absolute is false 40 PASS event.absolute is false
41 event.initDeviceOrientationEvent('', false, false, null, null, null, null) 41 event.initDeviceOrientationEvent('', false, false, null, null, null, null)
42 PASS event.alpha == null is true 42 PASS event.alpha == null is true
43 PASS event.beta == null is true 43 PASS event.beta == null is true
44 PASS event.gamma == null is true 44 PASS event.gamma == null is true
45 PASS event.absolute is false 45 PASS event.absolute is false
46 PASS successfullyParsed is true 46 PASS successfullyParsed is true
47 47
48 TEST COMPLETE 48 TEST COMPLETE
49 49
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698