Home | History | Annotate | Download | only in script-tests

Lines Matching refs:window

1 description("Tests that the window.DeviceMotionEvent and window.ondevicemotion properties are present.");
5 for (var property in window) {
12 shouldBeTrue("typeof window.DeviceMotionEvent == 'object'");
13 shouldBeFalse("typeof window.DeviceMotionEvent == 'function'");
15 shouldBeTrue("'DeviceMotionEvent' in window");
16 shouldBeTrue("window.hasOwnProperty('DeviceMotionEvent')");
20 for (var property in window) {
27 shouldBeTrue("typeof window.ondevicemotion == 'object'");
29 shouldBeTrue("'ondevicemotion' in window");
30 shouldBeTrue("window.hasOwnProperty('ondevicemotion')");
32 window.successfullyParsed = true;