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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/fixed.html

Issue 2423643002: Revert of Turn on CompositeOpaqueFixedPosition for test and rebase tests. (Closed)
Patch Set: Created 4 years, 2 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 <html> 1 <html>
2 <head> 2 <head>
3 <title></title> 3 <title></title>
4 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip t> 4 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip t>
5 <script type="text/javascript"> 5 <script type="text/javascript">
6 window.onload = function() { 6 window.onload = function() {
7 window.scrollTo(0, 20); 7 window.scrollTo(0, 20);
8 runRepaintAndPixelTest(); 8 runRepaintAndPixelTest();
9 }; 9 };
10 10
11 function repaintTest() 11 function repaintTest()
12 { 12 {
13 document.getElementById('t').style.background='green'; 13 document.getElementById('t').style.background='green';
14 } 14 }
15 </script> 15 </script>
16 </head> 16 </head>
17 <body style="height:2000px;"> 17 <body style="height:2000px;">
18 <p style="position: relative; top: 20px;"> 18 <p style="position: relative; top: 20px;">
19 Repaint test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=1145 2">http://bugs.webkit.org/show_bug.cgi?id=11452</a> 19 Repaint test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=1145 2">http://bugs.webkit.org/show_bug.cgi?id=11452</a>
20 REGRESSION (r16736-r16801): Incorrect repaint of fixed boxes</i>. 20 REGRESSION (r16736-r16801): Incorrect repaint of fixed boxes</i>.
21 </p> 21 </p>
22 <!-- Using 99% opacity to ensure fixed position is not automatically promote d. --> 22 <div id="t" style="position: fixed; width: 100px; height: 100px; background: red"></div>
23 <div id="t" style="position: fixed; opacity: 0.99; width: 100px; height: 100 px; background: red"></div>
24 </body> 23 </body>
25 </html> 24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698