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

Side by Side Diff: LayoutTests/svg/animations/dynamic-modify-attributename-crash.svg

Issue 10450007: Merge 116860 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1132/
Patch Set: Created 8 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
« no previous file with comments | « no previous file | LayoutTests/svg/animations/dynamic-modify-attributename-crash-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
1 <svg xmlns="http://www.w3.org/2000/svg"> 1 <svg xmlns="http://www.w3.org/2000/svg">
2 <!-- Test for WK86100 - passes if there is no crash --> 2 <!-- Test for WK86100 - passes if there is no crash -->
3 <animate id="animate" attributeName="x" dur="9s"/> 3 <animate id="animate" attributeName="x" dur="9s"/>
4 <text id="log"/> 4 <text id="log"/>
5 <script> 5 <script>
6 <![CDATA[ 6 <![CDATA[
7 if (window.layoutTestController) { 7 if (window.layoutTestController) {
8 layoutTestController.waitUntilDone(); 8 layoutTestController.waitUntilDone();
9 layoutTestController.dumpAsText(); 9 layoutTestController.dumpAsText();
10 } 10 }
11 11
12 window.setTimeout(function() { 12 window.setTimeout(function() {
13 var elem = document.getElementById("animate"); 13 var elem = document.getElementById("animate");
14 elem.setAttribute("attributeName", "transform"); 14 elem.setAttribute("attributeName", "transform");
15 }, 10); 15 }, 10);
16 16
17 window.setTimeout(function() { 17 window.setTimeout(function() {
18 document.getElementById("log").appendChild(document.createTextNode("PASS") ); 18 document.getElementById("log").appendChild(document.createTextNode("PASS") );
19 if (window.layoutTestController) 19 if (window.layoutTestController)
20 layoutTestController.notifyDone(); 20 layoutTestController.notifyDone();
21 }, 100); 21 }, 100);
22 ]]> 22 ]]>
23 </script> 23 </script>
24 </svg> 24 </svg>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/animations/dynamic-modify-attributename-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698