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

Unified Diff: LayoutTests/css3/compositing/mix-blend-mode-has-ancestor-clipping-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: 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/css3/compositing/mix-blend-mode-has-ancestor-clipping-layer.html
diff --git a/LayoutTests/css3/compositing/mix-blend-mode-has-ancestor-clipping-layer.html b/LayoutTests/css3/compositing/mix-blend-mode-has-ancestor-clipping-layer.html
new file mode 100644
index 0000000000000000000000000000000000000000..cb84f2931dbd2014474276841bdd5c5e1cdc091f
--- /dev/null
+++ b/LayoutTests/css3/compositing/mix-blend-mode-has-ancestor-clipping-layer.html
@@ -0,0 +1,34 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<style>
+ .content > div {
+ float: left;
+ margin: 10px;
+ }
+ .clipper {
+ width: 100px;
+ height: 100px;
+ overflow: hidden;
+ }
+ .blended {
+ mix-blend-mode: multiply;
+ }
+ .accelerated {
+ -webkit-transform: rotateX(0deg);
+ }
+</style>
+</head>
+<body>
+ <p>Test that mix-blend-mode multiply works for layers that are clipped with overflow hidden.</p>
+ <p>This test passes if you can see two black squares.</p>
+ <div class="content">
+ <div class="clipper" style="background-color: green">
+ <div class="accelerated blended" style="width: 300px; height: 300px; background-color: red;"></div>
+ </div>
+ <div class="accelerated clipper" style="background-color: green">
+ <div class="accelerated blended" style="width: 300px; height: 300px; background-color: red;"></div>
+ </div>
+ </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698