Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(517)

Side by Side Diff: LayoutTests/permissionclient/resources/video.html

Issue 27694002: Ability to block <audio> and <video> media. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rename "video" to "media". Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script>
4 function log(a)
5 {
6 document.getElementById("results").innerHTML += a + "<br>";
7 }
8
9 function loaded()
10 {
11 log('FAIL: load event for iframed video');
12 done();
13 }
14
15 function done()
16 {
17 if (window.testRunner) {
18 testRunner.notifyDone();
19 }
20 }
21 </script>
22 </head>
23 <body>
24 <video src="test.ogv" onloadeddata="loaded()" onerror="done()">
25 </video>
26 <div id="results"></div>
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698