2008-07-29 21:55:27 -07:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Media test: controls</title>
|
2009-05-06 13:46:04 -07:00
|
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
2008-07-29 21:55:27 -07:00
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
2009-02-15 08:26:32 -08:00
|
|
|
<video id='v1' onerror="event.stopPropagation();"></video><audio id='a1' onerror="event.stopPropagation();"></audio>
|
|
|
|
<video id='v2' onerror="event.stopPropagation();" controls></video><audio id='a2' onerror="event.stopPropagation();" controls></audio>
|
2008-07-29 21:55:27 -07:00
|
|
|
<pre id="test">
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
var v1 = document.getElementById('v1');
|
|
|
|
var a1 = document.getElementById('a1');
|
|
|
|
var v2 = document.getElementById('v2');
|
|
|
|
var a2 = document.getElementById('a2');
|
|
|
|
ok(!v1.controls, "v1.controls should be false by default");
|
|
|
|
ok(!a1.controls, "v1.controls should be false by default");
|
|
|
|
ok(v2.controls, "v2.controls should be true");
|
|
|
|
ok(a2.controls, "v2.controls should be true");
|
|
|
|
v2.controls=false;
|
|
|
|
a2.controls=false;
|
|
|
|
ok(!v2.controls, "v2.controls should be false");
|
|
|
|
ok(!a2.controls, "a2.controls should be false");
|
|
|
|
v2.controls=true;
|
|
|
|
a2.controls=true;
|
|
|
|
ok(v2.controls, "v2.controls should be true");
|
|
|
|
ok(a2.controls, "a2.controls should be true");
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|