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

Unified Diff: third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent.html

Issue 2558633005: Mark clip paths as a clip-related property (Closed)
Patch Set: Add layout test for clip-path Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent.html
diff --git a/third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent.html b/third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent.html
new file mode 100644
index 0000000000000000000000000000000000000000..eefec6d63924d3b2deff1e0da14c081f7964c70c
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+
+<style type="text/css" media="screen">
+#parent {
+ position: absolute;
+ height: 256px;
+ width: 256px;
+ -webkit-clip-path: circle(128px at center);
+ clip-path: circle(128px at center);
+ background: #eee;
+}
+#child {
+ background: #222;
+ width: 64px;
+ height: 64px;
+ will-change: transform;
+}
+</style>
+
+<div id="parent">
+ <div id="child"></div>
+</div>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698