summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/dom/DeviceMotion/script-tests/create-event.js
blob: 8b5aec822bff32a3752099a93ee82c52f0a8626a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
description("Tests that document.createEvent() works with DeviceMotinEvent.");

var event = document.createEvent('DeviceMotionEvent');

shouldBeTrue("typeof event == 'object'");

shouldBeTrue("'type' in event");
shouldBeTrue("'bubbles' in event");
shouldBeTrue("'cancelable' in event");
shouldBeTrue("'acceleration' in event");
shouldBeTrue("'accelerationIncludingGravity' in event");
shouldBeTrue("'rotationRate' in event");
shouldBeTrue("'interval' in event");

shouldBeTrue("typeof event.type == 'string'");
shouldBeTrue("typeof event.bubbles == 'boolean'");
shouldBeTrue("typeof event.cancelable == 'boolean'");
shouldBeTrue("typeof event.acceleration == 'object'");
shouldBeTrue("typeof event.accelerationIncludingGravity == 'object'");
shouldBeTrue("typeof event.rotationRate == 'object'");
shouldBeTrue("typeof event.interval == 'object'");

window.successfullyParsed = true;