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

Side by Side Diff: LayoutTests/css3/clippath/clippath-reference-delete-crash.html

Issue 423823004: Add support for SVG Clip paths in HTML (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed unwanted code from RenderLayerClipPathInfo.* and Renderlayer.cpp and Renamed filters to svg… Created 6 years, 4 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 <html>
3 <head>
4 <script src="../../resources/js-test.js"></script>
5 <style>
6 .error {
7 width: 100px;
8 height: 100px;
9 background-color: red;
10 position: absolute;
11 }
12 .clipped {
13 width: 100px;
14 height: 100px;
15 background-color: green;
16 }
17 </style>
18 </head>
19 <body>
20 <div class="error"></div>
21 <div class="clipped" id="html"></div>
22 <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1" id= "svg">
23 <defs>
24 <clipPath id="svgPath" clipPathUnits="objectBoundingBox">
25 <circle cx="0.5" cy="0.5" r="0.5">
26 <animate attributeName="r" attributeType="XML" from="0.25" to="1" begin= "0s" dur="0.1s" fill="freeze"/>
27 </circle>
28 </clipPath>
29 </defs>
30 </svg>
31 <script src="script-tests/clippath-reference-delete-crash.js"></script>
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698