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

Side by Side Diff: LayoutTests/fast/repaint/fixed-after-scroll.html

Issue 898783003: Move rendering/RenderLayer* to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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
« no previous file with comments | « LayoutTests/fast/layers/video-layer.html ('k') | LayoutTests/fast/repaint/fixed-scale.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <link rel="stylesheet" href="resources/default.css"> 3 <link rel="stylesheet" href="resources/default.css">
4 <script src="../../resources/run-after-display.js"></script> 4 <script src="../../resources/run-after-display.js"></script>
5 <script src="resources/text-based-repaint.js"></script> 5 <script src="resources/text-based-repaint.js"></script>
6 <script> 6 <script>
7 if (window.testRunner) 7 if (window.testRunner)
8 testRunner.dumpAsTextWithPixelResults(); 8 testRunner.dumpAsTextWithPixelResults();
9 9
10 window.onload = function() { 10 window.onload = function() {
11 window.scrollTo(0, 500); 11 window.scrollTo(0, 500);
12 runRepaintTest(); 12 runRepaintTest();
13 }; 13 };
14 14
15 function repaintTest() 15 function repaintTest()
16 { 16 {
17 document.getElementById('t').style.position = "fixed"; 17 document.getElementById('t').style.position = "fixed";
18 } 18 }
19 </script> 19 </script>
20 </head> 20 </head>
21 21
22 <body style="height:2000px;"> 22 <body style="height:2000px;">
23 <!-- Repaint test for https://bugs.webkit.org/show_bug.cgi?id=64650: RenderL ayer fixed position logic needs more basic testing --> 23 <!-- Repaint test for https://bugs.webkit.org/show_bug.cgi?id=64650: Layer f ixed position logic needs more basic testing -->
24 <!-- You should see no red on this page. --> 24 <!-- You should see no red on this page. -->
25 <div style="top: 200px;" class="red fixed"></div> 25 <div style="top: 200px;" class="red fixed"></div>
26 <div id="t" style="top: 200px;" class="green absolute"></div> 26 <div id="t" style="top: 200px;" class="green absolute"></div>
27 </body> 27 </body>
28 </html> 28 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/layers/video-layer.html ('k') | LayoutTests/fast/repaint/fixed-scale.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698