blob: e87f6c6484fb1ff24c487a9bc270a010cd69380e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<html>
<head>
<meta name="timeout" content="long"/>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8"/>
<title>Video Fastpath upload test</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="test_video_fastpath.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
</head>
<body>
<script>
function runTest() {
startTest("red-green.webmvp8.webm");
}
SimpleTest.waitForExplicitFinish();
SpecialPowers.pushPrefEnv({"set" : [["webgl.enable-privileged-extensions", true]]}, runTest);
</script>
</body>
</html>
|