7 transform:translatez(
0);
16 background-color: green;
20 background-color: lime;
24 background-color: blue;
60 if (window
.testRunner
) {
61 testRunner
.dumpAsTextWithPixelResults();
62 testRunner
.waitUntilDone();
65 window
.addEventListener('load', function() {
66 if (window
.testRunner
) {
67 document
.getElementById("layertree").innerText
= window
.internals
.layerTreeAsText(document
);
68 testRunner
.notifyDone();
76 <!-- This green div should be completely underneath the lime div -->
77 <div class=
"composited green box behind"> </div>
79 <!-- This lime colored div should correctly detect overlap and become composited. -->
80 <div class=
"lime box inmiddle"> </div>
82 <!-- The blue colord div should also correctly detect overlap on top of the second layer. -->
83 <div class=
"blue box ontop"> </div>
85 <pre id=
"layertree"></pre>