| Index: LayoutTests/permissionclient/resources/video.html
|
| diff --git a/LayoutTests/permissionclient/resources/video.html b/LayoutTests/permissionclient/resources/video.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8cdcc1e38e93e85af68d1fd16604a92dba1bb9b1
|
| --- /dev/null
|
| +++ b/LayoutTests/permissionclient/resources/video.html
|
| @@ -0,0 +1,28 @@
|
| +<html>
|
| +<head>
|
| +<script>
|
| +function log(a)
|
| +{
|
| + document.getElementById("results").innerHTML += a + "<br>";
|
| +}
|
| +
|
| +function loaded()
|
| +{
|
| + log('FAIL: load event for iframed video');
|
| + done();
|
| +}
|
| +
|
| +function done()
|
| +{
|
| + if (window.testRunner) {
|
| + testRunner.notifyDone();
|
| + }
|
| +}
|
| +</script>
|
| +</head>
|
| +<body>
|
| +<video src="test.ogv" onloadeddata="loaded()" onerror="done()">
|
| +</video>
|
| +<div id="results"></div>
|
| +</body>
|
| +</html>
|
|
|