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

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: Added layout test & addressed review comments Created 7 years, 3 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
(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 }, false);
9 }
10 </script>
11 <style>
12 .stacking-context,
13 .accelerated {
14 -webkit-transform: rotateX(0deg);
15 }
16 .blended {
17 mix-blend-mode: multiply;
18 }
19 </style>
20 </head>
21 <body>
22 <div class="stacking-context">
23 <img class="accelerated blended" src="resources/reference.png">
24 </div>
25 <pre id="layers">Layer tree goes here when testing</pre>
26 </body>
27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698