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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/composited-layer.html

Issue 2393443002: Adjust compositing tests to be SPv2-compatible. (Closed)
Patch Set: none 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 <style> 2 <style>
3 #multicol { 3 #multicol {
4 -webkit-column-count: 2; 4 -webkit-column-count: 2;
5 -webkit-column-gap: 0; 5 -webkit-column-gap: 0;
6 column-count: 2; 6 column-count: 2;
7 column-gap: 0; 7 column-gap: 0;
8 width: 200px; 8 width: 200px;
9 height: 100px; 9 height: 100px;
10 transform: translateZ(0); 10 transform: translateZ(0);
11 } 11 }
12 12
13 .filler { 13 .filler {
14 width: 100px; 14 width: 100px;
15 height: 100px; 15 height: 100px;
16 } 16 }
17 </style> 17 </style>
18 <div id="multicol"> 18 <div id="multicol">
19 <div class="filler"></div> 19 <div class="filler"></div>
20 <div class="filler"></div> 20 <div class="filler"></div>
21 </div> 21 </div>
22 <div id="layers"></div> 22 <div id="layers"></div>
23 <script> 23 <script>
24 if (window.testRunner) 24 if (window.testRunner)
25 testRunner.dumpAsText(); 25 testRunner.dumpAsText();
26 26
27 if (window.internals) 27 if (window.internals)
28 document.getElementById("layers").innerText = internals.layerTreeAsText(docu ment); 28 document.getElementById("layers").innerText = internals.layerTreeAsText(docu ment, window.internals.OUTPUT_CHILDREN_AS_LAYER_LIST);
29 </script> 29 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698