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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/pause-in-removed-frame.html

Issue 2893073002: DevTools: introduce ResourceMapping (Closed)
Patch Set: cleanup test Created 3 years, 7 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
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698