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

Side by Side Diff: LayoutTests/plugins/page-scale-does-not-affect-plugin-height.html

Issue 462243002: Make logical height calculations on RenderView use unscaled FrameRect (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed up test Created 6 years, 4 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
« no previous file with comments | « no previous file | LayoutTests/plugins/page-scale-does-not-affect-plugin-height-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/plugins/page-scale-does-not-affect-plugin-height-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698