Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / media / resources / video-controls-no-scripting-iframe.html
blob2bcdf5d7ad6036e7745a5a6c7f5a4b2c0dcf5e0a
1 <!doctype html>
2 <html>
3 <head>
4 <style> #error { display: none; } </style>
5 <script>
6 function showErrorMsg()
8 document.getElementById('error').style.display = 'block';
10 </script>
11 </head>
13 <body onload="showErrorMsg()">
15 <video>
16 <source src="content/test.mp4" type="video/mp4">
17 <source src="content/test.ogv" type="video/ogg">
18 </video>
20 <noscript><p>Scripting is DISABLED.</p></noscript>
22 <p id=error>ERROR: JavaScript must be disabled for this test.</p>
24 </body>
25 </html>