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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 }
12 #child {
13 background: #222;
14 width: 64px;
15 height: 64px;
16 will-change: transform;
17 }
18 </style>
19
20 <div id="parent">
21 <div id="child"></div>
22 </div>
OLDNEW
« 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