| <style> video { zoom: 150%; border: 3px solid red; } </style> |
| <script src=media-file.js></script> |
| window.internals.settings.setMockScrollbarsEnabled(true); |
| setSrcByTagName("video", findMediaFile("video", "content/test")); |
| var totalCount = document.getElementsByTagName('video').length; |
| document.addEventListener("canplaythrough", function () { |
| setTimeout(function() { testRunner.notifyDone(); }, totalCount * 150); |
| testRunner.waitUntilDone(); |
| document.body.appendChild(document.createTextNode('FAIL')); |
| <p>150% zoom, with width and height attributes </p> |
| <video width=320 height=240></video><br> |
| <p>150% zoom, without width and height attributes </p> |
| <video></video><br> |