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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <style type="text/css" media="screen">
4 #parent {
5 position: absolute;
6 height: 256px;
7 width: 256px;
8 -webkit-clip-path: circle(128px at center);
9 clip-path: circle(128px at center);
10 background: #eee;
11 will-change: transform;
12 }
13 #child {
14 background: #222;
15 width: 64px;
16 height: 64px;
17 will-change: transform;
18 }
19 </style>
20
21 <div id="parent">
22 <div id="child"></div>
23 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698