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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/automapping-git-folders.html

Issue 2780933003: DevTools: support UISourceCode rename in automapping (Closed)
Patch Set: fix test Created 3 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../inspector-test.js"></script> 3 <script src="../inspector-test.js"></script>
4 <script src="../isolated-filesystem-test.js"></script> 4 <script src="../isolated-filesystem-test.js"></script>
5 <script src="./persistence-test.js"></script> 5 <script src="./persistence-test.js"></script>
6 <script src="./automapping-test.js"></script> 6 <script src="./automapping-test.js"></script>
7 <script> 7 <script>
8 8
9 function test() 9 function test()
10 { 10 {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 "code/proj2/.git/HEAD": { content: "ref: refs/heads/master", time: new D ate("May 25, 2009")}, 43 "code/proj2/.git/HEAD": { content: "ref: refs/heads/master", time: new D ate("May 25, 2009")},
44 "code/proj2/reset.css": reset_css, 44 "code/proj2/reset.css": reset_css,
45 "code/proj2/jquery.js": jquery_js, 45 "code/proj2/jquery.js": jquery_js,
46 "code/proj2/logo.png": logo2, 46 "code/proj2/logo.png": logo2,
47 }); 47 });
48 fs.reportCreated(onFileSystemCreated); 48 fs.reportCreated(onFileSystemCreated);
49 49
50 function onFileSystemCreated() 50 function onFileSystemCreated()
51 { 51 {
52 automappingTest.waitUntilMappingIsStabilized(InspectorTest.completeTest. bind(InspectorTest)); 52 automappingTest.waitUntilMappingIsStabilized().then(InspectorTest.comple teTest.bind(InspectorTest));
53 } 53 }
54 } 54 }
55 </script> 55 </script>
56 </head> 56 </head>
57 <body onload="runTest()"> 57 <body onload="runTest()">
58 <p>Verify that automapping is able to map ambiguous resources based on the selec ted project folder.</p> 58 <p>Verify that automapping is able to map ambiguous resources based on the selec ted project folder.</p>
59 </body> 59 </body>
60 </html> 60 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698