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

Unified Diff: third_party/WebKit/LayoutTests/compositing/nested-border-radius-composited-child.html

Issue 2826673003: Fix clipping of squashed sibling layers with border radius masks (Closed)
Patch Set: Created 3 years, 8 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: third_party/WebKit/LayoutTests/compositing/nested-border-radius-composited-child.html
diff --git a/third_party/WebKit/LayoutTests/compositing/nested-border-radius-composited-child.html b/third_party/WebKit/LayoutTests/compositing/nested-border-radius-composited-child.html
new file mode 100644
index 0000000000000000000000000000000000000000..0128d18178790809008c219e28eed23043bbde8e
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/compositing/nested-border-radius-composited-child.html
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style>
+ .outer {
+ overflow:hidden;
+ border-radius: 1px;
+ display:flex;
+ backface-visibility: hidden;
+ }
+ #child-overflow {
+ border-radius: 5px;
+ overflow:hidden;
+ background-color: lightblue;
+ width: 100px;
+ height: 40px;
+ z-index:1
+ }
+ #sibling {
+ background-color: green;
+ width: 100px;
+ height: 40px;
+ z-index:1
+ }
+</style>
+</head>
+<div class="outer">
+ <div id="child-overflow"></div>
+ <div id="sibling"></div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698