Index: LayoutTests/permissionclient/resources/audio.html |
diff --git a/LayoutTests/permissionclient/resources/audio.html b/LayoutTests/permissionclient/resources/audio.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..90ad6d527a855f285e440a2badf64cc59658da46 |
--- /dev/null |
+++ b/LayoutTests/permissionclient/resources/audio.html |
@@ -0,0 +1,29 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+<script> |
+function log(a) |
+{ |
+ document.getElementById("results").innerHTML += a + "<br>"; |
+} |
+ |
+function loaded() |
+{ |
+ log('FAIL: load event for iframed sound'); |
+ done(); |
+} |
+ |
+function done() |
+{ |
+ if (window.testRunner) |
+ testRunner.notifyDone(); |
+} |
+</script> |
+</head> |
+<body> |
+<video src="../../media/content/silence.oga" onloadeddata="loaded()" onerror="done()"> |
+</video> |
+<div id="results"></div> |
+</body> |
+</html> |
+ |
jochen (gone - plz use gerrit)
2014/06/12 14:44:53
nit. no empty line here
pwnall-personal
2014/06/13 02:54:48
Done.
|