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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/clipath/clip-path-with-background-and-box-behind-expected.html

Issue 2530263002: Turn on Analytic AA in Chrome (take 5) (Closed)
Patch Set: 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 <style>
3 #boxpos {
4 position: absolute;
5 background-color: green;
6 }
7 .box {
8 position: relative;
9 -webkit-clip-path: url(#equitri);
10 height: 100px;
11 width: 100px;
12 background: red;
13 }
14 </style>
15 <div id="boxpos">
16 <div class="box"></div>
17 </div>
18
19 <svg id="tri">
20 <clipPath id="equitri" clipPathUnits="objectBoundingBox">
21 <polygon points=".5 0, 0 .86, 1 .86, .5 0" />
22 </clipPath>
23 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698