78 lines
2.2 KiB
HTML
78 lines
2.2 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Video controls test</title>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script src="/tests/SimpleTest/EventUtils.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body>
|
|
<script class="testbody" type="text/javascript">
|
|
function runTest(event) {
|
|
info(true, "----- test #" + testnum + " -----");
|
|
|
|
switch (testnum) {
|
|
case 1:
|
|
is(event.type, "timeupdate", "checking event type");
|
|
is(video.paused, false, "checking video play state");
|
|
video.removeEventListener("timeupdate", runTest);
|
|
|
|
// Click to toggle play/pause (now pausing)
|
|
synthesizeMouseAtCenter(video, {}, win);
|
|
break;
|
|
|
|
case 2:
|
|
is(event.type, "pause", "checking event type");
|
|
is(video.paused, true, "checking video play state");
|
|
win.close();
|
|
|
|
SimpleTest.finish();
|
|
break;
|
|
|
|
default:
|
|
ok(
|
|
false,
|
|
"unexpected test #" + testnum + " w/ event " + event.type
|
|
);
|
|
throw new Error(
|
|
`unexpected test #${testnum} w/ event ${event.type}`
|
|
);
|
|
}
|
|
|
|
testnum++;
|
|
}
|
|
|
|
SpecialPowers.pushPrefEnv(
|
|
{ set: [["javascript.enabled", false]] },
|
|
startTest
|
|
);
|
|
|
|
var testnum = 1;
|
|
|
|
var video;
|
|
function loadevent() {
|
|
is(
|
|
win.testExpando,
|
|
undefined,
|
|
"expando shouldn't exist because js is disabled"
|
|
);
|
|
video = win.document.querySelector("video");
|
|
// Other events expected by the test.
|
|
video.addEventListener("timeupdate", runTest);
|
|
video.addEventListener("pause", runTest);
|
|
}
|
|
|
|
var win;
|
|
function startTest() {
|
|
const TEST_FILE = location.href.replace(
|
|
"test_videocontrols_jsdisabled.html",
|
|
"file_videocontrols_jsdisabled.html"
|
|
);
|
|
win = window.open(TEST_FILE);
|
|
win.addEventListener("load", loadevent);
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
</script>
|
|
</body>
|
|
</html>
|