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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/compositing/fixed-pos-with-abs-pos-child-scroll.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 <!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. */
11 bottom: 30px; 10 bottom: 30px;
12 right: 0px; 11 right: 0px;
13 } 12 }
14 #abs { 13 #abs {
15 position: absolute; 14 position: absolute;
16 bottom: 0px; 15 bottom: 0px;
17 right: 0px; 16 right: 0px;
18 height: 90px; 17 height: 90px;
19 width: 360px; 18 width: 360px;
20 background: yellow; 19 background: yellow;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 <body style="height: 4000px;"> 55 <body style="height: 4000px;">
57 <div id="fixed"> 56 <div id="fixed">
58 <div id="abs"> 57 <div id="abs">
59 Hi! 58 Hi!
60 </div> 59 </div>
61 </div> 60 </div>
62 <pre id="layers"></pre> 61 <pre id="layers"></pre>
63 </body> 62 </body>
64 63
65 </html> 64 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698