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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector-enabled/database-open.html

Issue 1877223003: DevTools: deprecate InspectorTest.runAfterPendingDispatches (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector-enabled/dom-storage-open.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../inspector/inspector-test.js"></script> 4 <script src="../inspector/inspector-test.js"></script>
5 <script src="../inspector/resources-test.js"></script> 5 <script src="../inspector/resources-test.js"></script>
6 6
7 <script> 7 <script>
8 8
9 function onload() 9 function onload()
10 { 10 {
(...skipping 13 matching lines...) Expand all
24 function run() 24 function run()
25 { 25 {
26 var databases = InspectorTest.databaseModel().databases(); 26 var databases = InspectorTest.databaseModel().databases();
27 for (var i = 0; i < databases.length; ++i) { 27 for (var i = 0; i < databases.length; ++i) {
28 InspectorTest.addResult("Name: " + databases[i].name); 28 InspectorTest.addResult("Name: " + databases[i].name);
29 InspectorTest.addResult("Version: " + databases[i].version); 29 InspectorTest.addResult("Version: " + databases[i].version);
30 InspectorTest.addResult("Domain: " + databases[i].domain); 30 InspectorTest.addResult("Domain: " + databases[i].domain);
31 } 31 }
32 InspectorTest.completeTest(); 32 InspectorTest.completeTest();
33 } 33 }
34 InspectorTest.runAfterPendingDispatches(run); 34 InspectorTest.deprecatedRunAfterPendingDispatches(run);
35 } 35 }
36 36
37 </script> 37 </script>
38 38
39 </head> 39 </head>
40 <body onload="onload()"> 40 <body onload="onload()">
41 <p>Tests that Web Inspector gets populated with databases that were opened befor e inspector is shown.</p> 41 <p>Tests that Web Inspector gets populated with databases that were opened befor e inspector is shown.</p>
42 </body> 42 </body>
43 </html> 43 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector-enabled/dom-storage-open.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698