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

Side by Side Diff: LayoutTests/css3/compositing/should-have-compositing-layer.html

Issue 23503046: [CSS Blending] Implement mix-blend-mode in software. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 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
(Empty)
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="../../fast/js/resources/js-test-pre.js"></script>
5 </head>
6 <body>
7 <img style="mix-blend-mode: multiply;" src="resources/reference.png">
8 <script>
9 description("Test to make sure a blend mode creates a compositing layer. Test is successful of render tree shows compositing");
10 if (window.testRunner) {
11 var layers = window.internals.layerTreeAsText(document);
12 if (layers == "")
13 testFailed("no compositing layers");
14 else
15 testPassed("content has compositing layers");
16 testRunner.notifyDone();
17 }
18 successfullyParsed = true;
19 </script>
20 <script src="../../fast/js/resources/js-test-post.js"></script>
21 </body>
22 </html>
23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698