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

Unified Diff: third_party/WebKit/LayoutTests/compositing/overflow/border-radius-styles-with-composited-child.html

Issue 2588853002: Fix border radius on composited children. (Closed)
Patch Set: SPV2 expectations Created 3 years, 11 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/overflow/border-radius-styles-with-composited-child.html
diff --git a/third_party/WebKit/LayoutTests/compositing/overflow/border-radius-styles-with-composited-child.html b/third_party/WebKit/LayoutTests/compositing/overflow/border-radius-styles-with-composited-child.html
new file mode 100644
index 0000000000000000000000000000000000000000..37087f0aa010d1143ac95fe94ba541f80b18ff5c
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/compositing/overflow/border-radius-styles-with-composited-child.html
@@ -0,0 +1,41 @@
+<style>
+
+.outer {
+ border: 4px solid black;
+ width: 100px;
+ height: 100px;
+ border-radius: 40px;
+ background-color: lightblue;
+ overflow: hidden;
+ margin: 10px;
+}
+
+.inner {
+ width: 80px;
+ height: 80px;
+ background-color: green;
+ padding: .5em;
+ will-change: transform;
+}
+
+.dashed {
+ border-style: dashed;
+}
+
+.transparent {
+ border-color: rgba(255,0,0,0.5);
+}
+
+</style>
+
+<div class = "outer">
+ <div class = "inner"></div>
+</div>
+
+<div class = "outer dashed">
+ <div class = "inner"></div>
+</div>
+
+<div class = "outer transparent">
+ <div class = "inner"></div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698