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

Side by Side Diff: LayoutTests/css3/compositing/mix-blend-mode-isolation-layer.html

Issue 23511004: mix-blend-mode implementation for accelerated layers - blink part (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Renamed a variable Created 7 years, 1 month 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
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698