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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/css3/compositing/should-have-compositing-layer.html
diff --git a/LayoutTests/css3/compositing/should-have-compositing-layer.html b/LayoutTests/css3/compositing/should-have-compositing-layer.html
deleted file mode 100644
index c1f3219f7791feed4b855e76109e882caf85b178..0000000000000000000000000000000000000000
--- a/LayoutTests/css3/compositing/should-have-compositing-layer.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head>
-<script src="../../fast/js/resources/js-test-pre.js"></script>
-</head>
-<body>
-<img style="mix-blend-mode: multiply;" src="resources/reference.png">
-<script>
- description("Test to make sure a blend mode creates a compositing layer. Test is successful of render tree shows compositing");
- if (window.testRunner) {
- var layers = window.internals.layerTreeAsText(document);
- if (layers == "")
- testFailed("no compositing layers");
- else
- testPassed("content has compositing layers");
- testRunner.notifyDone();
- }
- successfullyParsed = true;
-</script>
-<script src="../../fast/js/resources/js-test-post.js"></script>
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698