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

Side by Side Diff: LayoutTests/compositing/squashing/squash-above-fixed-subpixel-2-expected.html

Issue 785333002: Delete the Layer Squashing runtime feature. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 .composited { 5 .composited {
6 transform: translateZ(0); 6 transform: translateZ(0);
7 } 7 }
8 8
9 .background { 9 .background {
10 position: fixed; 10 position: fixed;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 #testResults { 47 #testResults {
48 display: none; 48 display: none;
49 } 49 }
50 50
51 body { 51 body {
52 margin: 0px; 52 margin: 0px;
53 } 53 }
54 </style> 54 </style>
55 55
56 <script>
57 if (window.internals) {
58 internals.settings.setLayerSquashingEnabled(false);
59 }
60
61 </script>
62 </head> 56 </head>
63 57
64 <body> 58 <body>
65 59
66 <div id="description"> 60 <div id="description">
67 <p>This scenario tests that content is rendered correctly when 61 <p>This scenario tests that content is rendered correctly when
68 squashing composited layer is at a non-integral position, and contains 62 squashing composited layer is at a non-integral position, and contains
69 render layers at both integral and non-integral positions.</p> 63 render layers at both integral and non-integral positions.</p>
70 </div> 64 </div>
71 65
(...skipping 10 matching lines...) Expand all
82 <div id="paragraph-i" class="overlapping cyan"></div> 76 <div id="paragraph-i" class="overlapping cyan"></div>
83 <div id="paragraph-j" class="overlapping lime"></div> 77 <div id="paragraph-j" class="overlapping lime"></div>
84 <div id="paragraph-k" class="overlapping cyan"></div> 78 <div id="paragraph-k" class="overlapping cyan"></div>
85 <div id="paragraph-l" class="overlapping lime"></div> 79 <div id="paragraph-l" class="overlapping lime"></div>
86 <div id="paragraph-m" class="overlapping cyan"></div> 80 <div id="paragraph-m" class="overlapping cyan"></div>
87 <div id="paragraph-n" class="overlapping lime"></div> 81 <div id="paragraph-n" class="overlapping lime"></div>
88 82
89 </body> 83 </body>
90 84
91 </html> 85 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698