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

Unified Diff: LayoutTests/css3/blending/mix-blend-mode-with-masking-expected.html

Issue 779383003: Impl-side painting for css*/ layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix mix-blend-mode-with-masking expectation Created 6 years 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/blending/mix-blend-mode-with-masking-expected.html
diff --git a/LayoutTests/css3/blending/mix-blend-mode-with-masking-expected.html b/LayoutTests/css3/blending/mix-blend-mode-with-masking-expected.html
deleted file mode 100644
index d3cf36c912d8118f7cf351b42b31df7770260236..0000000000000000000000000000000000000000
--- a/LayoutTests/css3/blending/mix-blend-mode-with-masking-expected.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE HTML>
-<style>
- div {
- width: 100px;
- height: 100px;
- }
- .container {
- background-color: lime;
- isolation: isolate;
- margin: 10px;
- }
- .child {
- background-color: blue;
- -webkit-mask-image: url('resources/blue-circle.svg');
- }
- .blending {
- mix-blend-mode: difference;
- }
- .accelerated {
- will-change: transform;
- }
-</style>
-
-<div class="container">
- <div class="blending">
- <div class="child"></div>
- </div>
-</div>
-
-<div class="container">
- <div class="blending">
- <div class="accelerated child"></div>
- </div>
-</div>

Powered by Google App Engine
This is Rietveld 408576698