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

Side by Side Diff: LayoutTests/svg/custom/use-remove-referenced.html

Issue 1087653004: [svg] Update the <use> shadowtree if a referenced element is removed. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: alternative Created 5 years, 8 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
« no previous file with comments | « no previous file | LayoutTests/svg/custom/use-remove-referenced-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 <title>Test removing the element referenced by a 'use'</title>
3 <svg>
4 <defs>
5 <circle id="c" cx="50" cy="50" r="25" fill="red"/>
6 </defs>
7 <circle cx="50" cy="50" r="22" fill="green"/>
8 <use xlink:href="#c"/>
9 <script>window.onload = function() { document.getElementById("c").remove(); }</script>
10 </svg>
11
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/custom/use-remove-referenced-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698