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

Unified Diff: third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent-expected.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
Index: third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent-expected.html
diff --git a/third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent-expected.html b/third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..e28e7c3256aa4b1c3fa976769403896a90dd20c0
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent-expected.html
@@ -0,0 +1,23 @@
+<!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;
+ will-change: transform;
+}
+#child {
+ background: #222;
+ width: 64px;
+ height: 64px;
+ will-change: transform;
+}
+</style>
+
+<div id="parent">
+ <div id="child"></div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698