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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/masking/clip-path-columns-svg-clippath-usou.html

Issue 2300383002: Compute better reference/visual boxes for clip-path in columns (Closed)
Patch Set: performed Created 4 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 body { margin: 0; }
4 .clipped {
5 background-color: green;
6 border: 5px solid red;
7 -webkit-clip-path: url(#c);
8 clip-path: url(#c);
9 }
10 </style>
11 <div style="columns: 2; column-gap: 0; width: 200px; height: 100px">
12 <div style="height: 100px"></div>
13 <div style="height: 90px" class="clipped"></div>
14 </div>
15 <svg>
16 <clipPath id="c" clipPathUnits="userSpaceOnUse">
17 <rect x="5" y="5" width="90" height="90"/>
18 </clipPath>
19 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698