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

Side by Side Diff: LayoutTests/compositing/will-change/composited-layers.html

Issue 271753002: Remove compositing trigger for will-change: top (and similar) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove from layerTypeRequired logic Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 .shouldComposite { 5 .shouldComposite {
6 position: absolute; 6 position: absolute;
7 width: 50px; 7 width: 50px;
8 height: 50px; 8 height: 50px;
9 background-color: green; 9 background-color: green;
10 } 10 }
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 document.getElementById("layertree").innerText = window.internals.layerT reeAsText(document); 88 document.getElementById("layertree").innerText = window.internals.layerT reeAsText(document);
89 testRunner.notifyDone(); 89 testRunner.notifyDone();
90 } 90 }
91 }, false); 91 }, false);
92 </script> 92 </script>
93 </head> 93 </head>
94 <body> 94 <body>
95 <div id="willChangeAuto" class="shouldNotComposite"></div> 95 <div id="willChangeAuto" class="shouldNotComposite"></div>
96 <div id="willChangeOpacity" class="shouldComposite"></div> 96 <div id="willChangeOpacity" class="shouldComposite"></div>
97 <div id="willChangeTransform" class="shouldComposite"></div> 97 <div id="willChangeTransform" class="shouldComposite"></div>
98 <div id="willChangeLeft" class="shouldComposite"></div> 98 <div id="willChangeLeft" class="shouldNotComposite"></div>
99 <div id="willChangeRight" class="shouldComposite"></div> 99 <div id="willChangeRight" class="shouldNotComposite"></div>
100 <div id="willChangeTop" class="shouldComposite"></div> 100 <div id="willChangeTop" class="shouldNotComposite"></div>
101 <div id="willChangeBottom" class="shouldComposite"></div> 101 <div id="willChangeBottom" class="shouldNotComposite"></div>
102 <div id="willChangeFilter" class="shouldComposite"></div> 102 <div id="willChangeFilter" class="shouldNotComposite"></div>
103 <div id="willChangeCombinationThatComposites" class="shouldComposite"></div> 103 <div id="willChangeCombinationThatComposites" class="shouldComposite"></div>
104 <div id="willChangeZIndex" class="shouldNotComposite"></div> 104 <div id="willChangeZIndex" class="shouldNotComposite"></div>
105 105
106 <pre id="layertree"></pre> 106 <pre id="layertree"></pre>
107 </body> 107 </body>
108 </html> 108 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698