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

Side by Side Diff: LayoutTests/svg/custom/use-target-removed.svg

Issue 1323443003: Don't transfer viewport to an invalid/dirty <use> instance (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Only clear the instance root. Created 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/svg/custom/use-target-removed-expected.txt » ('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 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k">
2 <symbol id="a"/>
3 <use id="b" xlink:href="#a"/>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
7 b = document.getElementById('b');
8 b.href.baseVal = "#a";
9 onload = function() {
10 document.getElementById("a").remove();
11 b.setAttribute("width", 100);
12 };
13 </script>
14 <text y="20">PASS: The text is displayed and the file did not trigger a crash. </text>
15 </svg>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/custom/use-target-removed-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698