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: third_party/WebKit/LayoutTests/paint/invalidation/relayout-fixed-position-after-scale.html

Issue 2327223002: Move all remaining fast/repaint tests to paint/invalidation (Closed)
Patch Set: Created 4 years, 3 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 <html> 2 <html>
3 <head> 3 <head>
4 <title>This test is successful if fixed position elements re-layout correctly on page scale changes</title> 4 <title>This test is successful if fixed position elements re-layout correctly on page scale changes</title>
5 <style> 5 <style>
6 .fixed_size { 6 .fixed_size {
7 position:fixed; 7 position:fixed;
8 background-color:#ccffcc; 8 background-color:#ccffcc;
9 width:50px; 9 width:50px;
10 height:50px; 10 height:50px;
(...skipping 24 matching lines...) Expand all
35 35
36 // Force scrollbar to hide and re-layout immediately. 36 // Force scrollbar to hide and re-layout immediately.
37 var spacer = document.getElementById('spacer'); 37 var spacer = document.getElementById('spacer');
38 spacer.style.display = "none"; 38 spacer.style.display = "none";
39 document.body.offsetTop; 39 document.body.offsetTop;
40 } 40 }
41 } 41 }
42 </script> 42 </script>
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698