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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/viewport/viewport-dimensions-iframe.html

Issue 2156143002: Add page coordinates to the ViewportAPI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase + fix layout tests Created 4 years, 5 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 body { 3 body {
4 height: 2000px; 4 height: 2000px;
5 width: 2000px; 5 width: 2000px;
6 } 6 }
7 #frame { 7 #frame {
8 height: 500px; 8 height: 500px;
9 width: 200px; 9 width: 200px;
10 } 10 }
(...skipping 11 matching lines...) Expand all
22 async_test(function(t) { 22 async_test(function(t) {
23 window.onload = t.step_func(function() { 23 window.onload = t.step_func(function() {
24 internals.setPageScaleFactor(2); 24 internals.setPageScaleFactor(2);
25 25
26 // The page scale on the root frame shouldn't affect the viewport/scale 26 // The page scale on the root frame shouldn't affect the viewport/scale
27 // values in the iframe. 27 // values in the iframe.
28 var frame = document.getElementById("frame"); 28 var frame = document.getElementById("frame");
29 frame.contentWindow.scrollTo(10, 15); 29 frame.contentWindow.scrollTo(10, 15);
30 assert_equals(frameViewport().clientWidth, 200 - scrollbarWidth); 30 assert_equals(frameViewport().clientWidth, 200 - scrollbarWidth);
31 assert_equals(frameViewport().clientHeight, 500 - scrollbarHeight); 31 assert_equals(frameViewport().clientHeight, 500 - scrollbarHeight);
32 assert_equals(frameViewport().pageX, 10);
33 assert_equals(frameViewport().pageY, 15);
32 assert_equals(frameViewport().scrollLeft, 0); 34 assert_equals(frameViewport().scrollLeft, 0);
33 assert_equals(frameViewport().scrollTop, 0); 35 assert_equals(frameViewport().scrollTop, 0);
34 assert_equals(frameViewport().scale, 1); 36 assert_equals(frameViewport().scale, 1);
35 37
36 t.done(); 38 t.done();
37 }); 39 });
38 }, 'Verify viewport dimensions for iframe.'); 40 }, 'Verify viewport dimensions for iframe.');
39 </script> 41 </script>
40 <iframe id="frame" srcdoc=" 42 <iframe id="frame" srcdoc="
41 <style> 43 <style>
42 body { 44 body {
43 width: 2000px; 45 width: 2000px;
44 height: 2000px; 46 height: 2000px;
45 } 47 }
46 </style> 48 </style>
47 "></iframe> 49 "></iframe>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698