| OLD | NEW | 
|   1 <html> |   1 <html> | 
|   2 <head> |   2 <head> | 
|   3 <script src="/inspector/inspector-test.js"></script> |   3 <script src="../../inspector-test.js"></script> | 
|   4 <script src="/inspector/debugger-test.js"></script> |   4 <script src="../../debugger-test.js"></script> | 
|   5 <script> |   5 <script> | 
|   6  |   6  | 
|   7 window.removeIframe = function() |   7 window.removeIframe = function() | 
|   8 { |   8 { | 
|   9   var child = document.getElementById('child'); |   9   var child = document.getElementById('child'); | 
|  10   child.parentNode.removeChild(child); |  10   child.parentNode.removeChild(child); | 
|  11   debugger; |  11   debugger; | 
|  12 }; |  12 }; | 
|  13  |  13  | 
|  14 function testFunction() |  14 function testFunction() | 
| (...skipping 23 matching lines...) Expand all  Loading... | 
|  38  |  38  | 
|  39 <body> |  39 <body> | 
|  40 <div>Parent Frame</div> |  40 <div>Parent Frame</div> | 
|  41 <iframe id="child" src="./resources/child.html" onload="runTest()"></iframe> |  41 <iframe id="child" src="./resources/child.html" onload="runTest()"></iframe> | 
|  42 <p> |  42 <p> | 
|  43 Tests "pause" functionality in detached frame. |  43 Tests "pause" functionality in detached frame. | 
|  44 </p> |  44 </p> | 
|  45  |  45  | 
|  46 </body> |  46 </body> | 
|  47 </html> |  47 </html> | 
| OLD | NEW |