| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 <script src="../../../resources/js-test.js"></script> | 4 <script src="../resources/js-test.js"></script> |
| 5 <script> | 5 <script> |
| 6 description("Tests that the window.DeviceLightEvent and window.ondevicelight pro
perties are present."); | 6 description("Tests that the window.DeviceLightEvent and window.ondevicelight pro
perties are present."); |
| 7 | 7 |
| 8 shouldBeTrue("'DeviceLightEvent' in window"); | 8 shouldBeTrue("'DeviceLightEvent' in window"); |
| 9 shouldBeTrue("window.hasOwnProperty('DeviceLightEvent')"); | 9 shouldBeTrue("window.hasOwnProperty('DeviceLightEvent')"); |
| 10 | 10 |
| 11 shouldBeTrue("typeof window.ondevicelight == 'object'"); | 11 shouldBeTrue("typeof window.ondevicelight == 'object'"); |
| 12 shouldBeTrue("'ondevicelight' in window"); | 12 shouldBeTrue("'ondevicelight' in window"); |
| 13 | 13 |
| 14 </script> | 14 </script> |
| 15 </body> | 15 </body> |
| 16 </html> | 16 </html> |
| OLD | NEW |