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

Side by Side Diff: LayoutTests/compositing/scissor-out-of-viewport.html

Issue 1133693002: Update most LayoutTests to be agnostic to scrollTopLeftInterop mode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tdresser cr feedback Created 5 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- This test has a 16px tall div with overflow:hidden set and a child image. When the test loads the div is scrolled out of view. 2 <!-- This test has a 16px tall div with overflow:hidden set and a child image. When the test loads the div is scrolled out of view.
3 The test is a pass if the image does not appear. --> 3 The test is a pass if the image does not appear. -->
4 <body style="overflow:hidden"> 4 <body style="overflow:hidden">
5 <canvas style="position: absolute;"></canvas> 5 <canvas style="position: absolute;"></canvas>
6 <script> 6 <script>
7 document.querySelector("canvas").getContext("2d"); 7 document.querySelector("canvas").getContext("2d");
8 </script> 8 </script>
9 <div style="top:0px; height: 16px; overflow: hidden; position: relative;"> 9 <div style="top:0px; height: 16px; overflow: hidden; position: relative;">
10 <img style="position: absolute; left: -16px;" id="i"></img> 10 <img style="position: absolute; left: -16px;" id="i"></img>
11 </div> 11 </div>
12 <br> 12 <br>
13 <div style="height:2000px"></div> 13 <div style="height:2000px"></div>
14 <script> 14 <script>
15 var can = document.createElement("canvas"); 15 var can = document.createElement("canvas");
16 can.width = can.height = 500; 16 can.width = can.height = 500;
17 var ctx = can.getContext("2d"); 17 var ctx = can.getContext("2d");
18 ctx.fillStyle = "red"; 18 ctx.fillStyle = "red";
19 ctx.fillRect(0, 0, 500, 500); 19 ctx.fillRect(0, 0, 500, 500);
20 document.getElementById("i").src = can.toDataURL(); 20 document.getElementById("i").src = can.toDataURL();
21 document.body.scrollTop = 50; 21 document.scrollingElement.scrollTop = 50;
22 if (window.testRunner) 22 if (window.testRunner)
23 testRunner.dumpAsTextWithPixelResults(); 23 testRunner.dumpAsTextWithPixelResults();
24 </script> 24 </script>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/rtl/rtl-fixed-overflow-scrolled.html ('k') | LayoutTests/dialog/modal-dialog-scroll-height.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698