| OLD | NEW |
| (Empty) |
| 1 Tests the optional properties of DeviceOrientationEvent. Each property should be
null if not set, or set to null or undefined. | |
| 2 | |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | |
| 4 | |
| 5 | |
| 6 event = document.createEvent('DeviceOrientationEvent') | |
| 7 PASS event.alpha == null is true | |
| 8 PASS event.beta == null is true | |
| 9 PASS event.gamma == null is true | |
| 10 PASS event.absolute is false | |
| 11 event.initDeviceOrientationEvent('', false, false, 0, 1, 2, false) | |
| 12 PASS event.alpha == 0 is true | |
| 13 PASS event.beta == 1 is true | |
| 14 PASS event.gamma == 2 is true | |
| 15 PASS event.absolute is false | |
| 16 event.initDeviceOrientationEvent('', false, false, 0, 1, 2, true) | |
| 17 PASS event.alpha == 0 is true | |
| 18 PASS event.beta == 1 is true | |
| 19 PASS event.gamma == 2 is true | |
| 20 PASS event.absolute is true | |
| 21 event.initDeviceOrientationEvent() | |
| 22 PASS event.alpha == null is true | |
| 23 PASS event.beta == null is true | |
| 24 PASS event.gamma == null is true | |
| 25 PASS event.absolute is false | |
| 26 event.initDeviceOrientationEvent('', false, false, [], [], [], []) | |
| 27 PASS event.alpha == 0 is true | |
| 28 PASS event.beta == 0 is true | |
| 29 PASS event.gamma == 0 is true | |
| 30 PASS event.absolute is true | |
| 31 event.initDeviceOrientationEvent('', false, false, undefined, undefined, undefin
ed, undefined) | |
| 32 PASS event.alpha == null is true | |
| 33 PASS event.beta == null is true | |
| 34 PASS event.gamma == null is true | |
| 35 PASS event.absolute is false | |
| 36 event.initDeviceOrientationEvent('', false, false, '', '', '', '') | |
| 37 PASS event.alpha == 0 is true | |
| 38 PASS event.beta == 0 is true | |
| 39 PASS event.gamma == 0 is true | |
| 40 PASS event.absolute is false | |
| 41 event.initDeviceOrientationEvent('', false, false, null, null, null, null) | |
| 42 PASS event.alpha == null is true | |
| 43 PASS event.beta == null is true | |
| 44 PASS event.gamma == null is true | |
| 45 PASS event.absolute is false | |
| 46 PASS successfullyParsed is true | |
| 47 | |
| 48 TEST COMPLETE | |
| 49 | |
| OLD | NEW |