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

Side by Side Diff: LayoutTests/svg/dom/SVGLengthList-appendItemFromClearedList.html

Issue 211933008: Remove multiple GC calls and replace GCController.collect calls with GCController.collectAll (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: revert change to worker-event-listener Created 6 years, 9 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../resources/js-test.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 </head> 4 </head>
5 <body> 5 <body>
6 <svg id="svg" xmlns="http://www.w3.org/2000/svg" width="200" height="200"> 6 <svg id="svg" xmlns="http://www.w3.org/2000/svg" width="200" height="200">
7 <text id="text1" x="1 2 3">ABC</text> 7 <text id="text1" x="1 2 3">ABC</text>
8 <text id="text2" x="10 20">ABC</text> 8 <text id="text2" x="10 20">ABC</text>
9 </svg> 9 </svg>
10 10
(...skipping 12 matching lines...) Expand all
23 shouldBe("list1.numberOfItems", "4"); 23 shouldBe("list1.numberOfItems", "4");
24 shouldBe("list1.getItem(0).value", "1"); 24 shouldBe("list1.getItem(0).value", "1");
25 shouldBe("list1.getItem(1).value", "2"); 25 shouldBe("list1.getItem(1).value", "2");
26 shouldBe("list1.getItem(2).value", "3"); 26 shouldBe("list1.getItem(2).value", "3");
27 shouldBe("list1.getItem(3).value", "10"); 27 shouldBe("list1.getItem(3).value", "10");
28 28
29 shouldBe("list2.numberOfItems", "0"); 29 shouldBe("list2.numberOfItems", "0");
30 30
31 debug("The test passes if you only see 'PASS' messages, and test doesn't cra sh"); 31 debug("The test passes if you only see 'PASS' messages, and test doesn't cra sh");
32 32
33 gc(); gc(); 33 gc();
34 </script> 34 </script>
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW
« no previous file with comments | « LayoutTests/storage/websql/multiple-databases-garbage-collection.js ('k') | LayoutTests/svg/dom/SVGLengthList-basics.xhtml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698