Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / plugins / page-scale-does-not-affect-plugin-height.html
blob5ea43ec0f0ab918de2a1fd73a25ec527eebf6856
1 <!DOCTYPE html>
2 <script>
3 function runTest() {
4 if (window.testRunner)
5 testRunner.dumpAsText();
7 if (window.internals)
8 window.internals.setPageScaleFactor(1.5);
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 LayoutEmbeddedObject {EMBED} at (0,0) size 800x600<br>"
17 + "ACTUAL:<br>"
18 + internals.elementLayoutTreeAsText(document.getElementById('box'));
20 </script>
21 <style>
22 html, body {
23 height: 100%;
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>