Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <head> | |
| 3 <script> | |
| 4 if (window.testRunner) { | |
| 5 testRunner.dumpAsText(); | |
| 6 window.addEventListener('load', function () { | |
| 7 document.getElementById('layers').textContent = window.internals.layerTree AsText(document); | |
| 8 document.getElementById('stacking-context').style.display = 'none'; | |
| 9 }, false); | |
| 10 } | |
| 11 </script> | |
| 12 <style> | |
| 13 #stacking-context, | |
| 14 .accelerated { | |
| 15 -webkit-transform: rotateX(0deg); | |
| 16 } | |
| 17 .blended { | |
| 18 mix-blend-mode: multiply; | |
| 19 } | |
| 20 </style> | |
| 21 </head> | |
| 22 <body> | |
| 23 <div id="stacking-context"> | |
|
enne (OOO)
2013/11/11 21:52:46
Can you add another test with an additional stacki
rosca
2013/11/12 20:27:07
Done for the two tests you suggested.
I added one
| |
| 24 <img class="accelerated blended" src="resources/reference.png"> | |
| 25 </div> | |
| 26 <pre id="layers">Layer tree goes here when testing</pre> | |
| 27 </body> | |
| 28 </html> | |
| OLD | NEW |