Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <div>Test passes if it does not crash</div> | |
| 3 <script src="../../../resources/gc.js"></script> | |
| 4 <script> | |
| 5 if (window.testRunner) testRunner.dumpAsText(); | |
| 6 var template = document.createElement('template'); | |
| 7 var content = template.content; | |
| 8 template = null; | |
| 9 gc(); | |
| 10 gc(); | |
|
inferno
2013/09/10 00:57:43
nit: gc() is copied twice.
| |
| 11 content.appendChild(document.createElement('div')); | |
| 12 </script> | |
| OLD | NEW |