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

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

Issue 27694002: Ability to block <audio> and <video> media. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased. Created 6 years, 6 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 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 function log(a)
6 {
7 document.getElementById("results").innerHTML += a + "<br>";
8 }
9
10 function loaded()
11 {
12 log('FAIL: load event for iframed sound');
13 done();
14 }
15
16 function done()
17 {
18 if (window.testRunner)
19 testRunner.notifyDone();
20 }
21 </script>
22 </head>
23 <body>
24 <video src="../../media/content/silence.oga" onloadeddata="loaded()" onerror="do ne()">
25 </video>
26 <div id="results"></div>
27 </body>
28 </html>
OLDNEW
« no previous file with comments | « LayoutTests/permissionclient/audio-permissions-expected.txt ('k') | LayoutTests/permissionclient/resources/video.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698