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

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: Better rebase. 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>
29
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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698