| OLD | NEW |
| 1 description('Tests that the window.DeviceOrientationEvent and window.ondeviceori
entation properties are present.'); | 1 description('Tests that the window.DeviceOrientationEvent and window.ondeviceori
entation properties are present.'); |
| 2 | 2 |
| 3 function hasDeviceOrientationEventProperty() | |
| 4 { | |
| 5 for (var property in window) { | |
| 6 if (property == 'DeviceOrientationEvent') | |
| 7 return true; | |
| 8 } | |
| 9 return false; | |
| 10 } | |
| 11 | |
| 12 shouldBeTrue("typeof window.DeviceOrientationEvent == 'object'"); | 3 shouldBeTrue("typeof window.DeviceOrientationEvent == 'object'"); |
| 13 shouldBeFalse("typeof window.DeviceOrientationEvent == 'function'"); | 4 shouldBeFalse("typeof window.DeviceOrientationEvent == 'function'"); |
| 14 shouldBeTrue("hasDeviceOrientationEventProperty()"); | 5 shouldBeFalse("window.propertyIsEnumerable('DeviceOrientationEvent')"); |
| 15 shouldBeTrue("'DeviceOrientationEvent' in window"); | 6 shouldBeTrue("'DeviceOrientationEvent' in window"); |
| 16 shouldBeTrue("window.hasOwnProperty('DeviceOrientationEvent')"); | 7 shouldBeTrue("window.hasOwnProperty('DeviceOrientationEvent')"); |
| 17 | 8 |
| 18 function hasOnDeviceOrientationProperty() | 9 function hasOnDeviceOrientationProperty() |
| 19 { | 10 { |
| 20 for (var property in window) { | 11 for (var property in window) { |
| 21 if (property == 'ondeviceorientation') | 12 if (property == 'ondeviceorientation') |
| 22 return true; | 13 return true; |
| 23 } | 14 } |
| 24 return false; | 15 return false; |
| 25 } | 16 } |
| 26 | 17 |
| 27 shouldBeTrue("typeof window.ondeviceorientation == 'object'"); | 18 shouldBeTrue("typeof window.ondeviceorientation == 'object'"); |
| 28 shouldBeTrue("hasOnDeviceOrientationProperty()"); | 19 shouldBeTrue("hasOnDeviceOrientationProperty()"); |
| 29 shouldBeTrue("'ondeviceorientation' in window"); | 20 shouldBeTrue("'ondeviceorientation' in window"); |
| 30 shouldBeTrue("window.hasOwnProperty('ondeviceorientation')"); | 21 shouldBeTrue("window.hasOwnProperty('ondeviceorientation')"); |
| OLD | NEW |