OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script> |
| 3 function runTest() { |
| 4 if (window.testRunner) |
| 5 testRunner.dumpAsText(); |
| 6 |
| 7 if (window.eventSender) |
| 8 window.eventSender.setPageScaleFactor(1.5, 0, 0); |
| 9 |
| 10 document.body.innerHTML = |
| 11 "This test checks that page scale does not affect a plugin object's height
when it depends on the window height." |
| 12 + " The test scales the page and is considered to pass if the embed object
occupies the full height of the window." |
| 13 + "<br>" |
| 14 + "<br>" |
| 15 + "EXPECTED:<br>" |
| 16 + "layer at (0,0) size 800x600 RenderEmbeddedObject {EMBED} at (0,0) size
800x600<br>" |
| 17 + "ACTUAL:<br>" |
| 18 + internals.elementRenderTreeAsText(document.getElementById('box')); |
| 19 } |
| 20 </script> |
| 21 <style> |
| 22 html, body { |
| 23 height: 100%; |
| 24 } |
| 25 </style> |
| 26 <body style="margin: 0px; overflow: hidden" onload="runTest()"> |
| 27 <embed id="box" width="100%" height="100%" name="plugin" src="fileDoesNotExist
.pdf" type="application/pdf"></embed> |
| 28 </body> |
OLD | NEW |