Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / resources / script-element-gc.js
blob5ee1e8a0f93ef551271bbc317ebd5ce7ed996af0
1 function gc()
3     if (window.GCController)
4         return GCController.collectAll();
6     for (var i = 0; i < 10000; i++) { // > force garbage collection (FF requires about 9K allocations before a collect)
7         var s = new String("");
8     }
11 function removeScriptElement() {
12     var s = document.getElementById('theScript');
13     s.parentNode.removeChild(s);
16 removeScriptElement();
17 gc();