| OLD | NEW | 
|   1 <!DOCTYPE html> |   1 <!DOCTYPE html> | 
|   2 <html> |   2 <html> | 
|   3 <body><div><script> |   3 <body><div><script> | 
|   4  |   4  | 
|   5 if (!window.layoutTestController) |   5 if (!window.layoutTestController) | 
|   6     document.write("This test requires GCController."); |   6     document.write("This test requires GCController."); | 
|   7 else { |   7 else { | 
|   8     layoutTestController.dumpAsText(); |   8     layoutTestController.dumpAsText(); | 
|   9     layoutTestController.waitUntilDone(); |   9     layoutTestController.waitUntilDone(); | 
|  10  |  10  | 
| (...skipping 12 matching lines...) Expand all  Loading... | 
|  23     setTimeout(function () { |  23     setTimeout(function () { | 
|  24         document.addEventListener('DOMNodeInsertedIntoDocument', function () { c
    rash(); }, true); |  24         document.addEventListener('DOMNodeInsertedIntoDocument', function () { c
    rash(); }, true); | 
|  25         document.addEventListener('DOMSubtreeModified', function () { /* noop */
     }, false); |  25         document.addEventListener('DOMSubtreeModified', function () { /* noop */
     }, false); | 
|  26         document.title = 'hello'; |  26         document.title = 'hello'; | 
|  27     }, 0); |  27     }, 0); | 
|  28 } |  28 } | 
|  29  |  29  | 
|  30 </script> |  30 </script> | 
|  31 </body> |  31 </body> | 
|  32 </html> |  32 </html> | 
| OLD | NEW |