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

Side by Side Diff: LayoutTests/svg/dom/move-animating-svg-to-other-frame.html

Issue 290353002: SVG: Moving animating <svg> to other iframe should not crash. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: RELEASE_ASSERT Created 6 years, 7 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/dom/move-animating-svg-to-other-frame-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 <script src="../../resources/js-test.js"></script>
2 <script>
3 jsTestIsAsync = true;
4 description("Moving animating svg document to other iframe should not crash.");
5
6 var otherSVG = null; // read from resources/import-other-svg.svg
7 function loadedSVGToBeMoved()
8 {
9 debug("loaded SVG to be moved");
10
11 var source = document.getElementById("source");
12 otherSVG = source.contentDocument.documentElement;
13
14 var target = document.getElementById("target");
15 target.src = "resources/import-other-svg.svg";
16 target.onload = finishJSTest;
17 }
18 </script>
19 <iframe id="source" src="resources/svg-with-animate.svg" onload="loadedSVGToBeMo ved()"></iframe>
20 <iframe id="target"></iframe>
21 <p>Test pass if no crash.</p>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/dom/move-animating-svg-to-other-frame-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698