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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/compositing/fixed-pos-with-abs-pos-child-scroll.html

Issue 2369603002: 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 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 3
4 <head> 4 <head>
5 <script src="../../../resources/run-after-layout-and-paint.js"></script> 5 <script src="../../../resources/run-after-layout-and-paint.js"></script>
6 6
7 <style> 7 <style>
8 #fixed { 8 #fixed {
9 position: fixed; 9 position: fixed;
10 opacity: 0.99; /* Using 99% opacity on fixed pos elements to ensure they are not automatically promoted. */
10 bottom: 30px; 11 bottom: 30px;
11 right: 0px; 12 right: 0px;
12 } 13 }
13 #abs { 14 #abs {
14 position: absolute; 15 position: absolute;
15 bottom: 0px; 16 bottom: 0px;
16 right: 0px; 17 right: 0px;
17 height: 90px; 18 height: 90px;
18 width: 360px; 19 width: 360px;
19 background: yellow; 20 background: yellow;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 <body style="height: 4000px;"> 56 <body style="height: 4000px;">
56 <div id="fixed"> 57 <div id="fixed">
57 <div id="abs"> 58 <div id="abs">
58 Hi! 59 Hi!
59 </div> 60 </div>
60 </div> 61 </div>
61 <pre id="layers"></pre> 62 <pre id="layers"></pre>
62 </body> 63 </body>
63 64
64 </html> 65 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698