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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/file-system-project.html

Issue 1523193002: DevTools: merge UISourceCode's parentPath, name, originURL and uri. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaselined Created 5 years 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="../http/tests/inspector/inspector-test.js"></script> 3 <script src="../http/tests/inspector/inspector-test.js"></script>
4 <script src="../http/tests/inspector/debugger-test.js"></script> 4 <script src="../http/tests/inspector/debugger-test.js"></script>
5 <script src="../http/tests/inspector/workspace-test.js"></script> 5 <script src="../http/tests/inspector/workspace-test.js"></script>
6 <script src="../http/tests/inspector/isolated-filesystem-test.js"></script> 6 <script src="../http/tests/inspector/isolated-filesystem-test.js"></script>
7 <script> 7 <script>
8 function test() 8 function test()
9 { 9 {
10 function dumpUISourceCodes(uiSourceCodes, next) 10 function dumpUISourceCodes(uiSourceCodes, next)
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 next(); 150 next();
151 } 151 }
152 }, 152 },
153 153
154 function testExcludesViaDelegate(next) 154 function testExcludesViaDelegate(next)
155 { 155 {
156 createFileSystem("/var/www3", dumpExcludes); 156 createFileSystem("/var/www3", dumpExcludes);
157 157
158 function dumpExcludes(fs) 158 function dumpExcludes(fs)
159 { 159 {
160 InspectorTest.fileSystemUISourceCodes()[0].project().excludeFold er("/html2/"); 160 InspectorTest.fileSystemUISourceCodes()[0].project().excludeFold er("file:///var/www3/html2/");
161 InspectorTest.addResult(""); 161 InspectorTest.addResult("");
162 InspectorTest.addResult("-- Excluded /html2/ --"); 162 InspectorTest.addResult("-- Excluded /html2/ --");
163 dumpWorkspaceUISourceCodes(); 163 dumpWorkspaceUISourceCodes();
164 fs.reportRemoved(); 164 fs.reportRemoved();
165 next(); 165 next();
166 } 166 }
167 }, 167 },
168 168
169 function testExcludesViaProject(next) 169 function testExcludesViaProject(next)
170 { 170 {
(...skipping 15 matching lines...) Expand all
186 } 186 }
187 } 187 }
188 ]); 188 ]);
189 }; 189 };
190 </script> 190 </script>
191 </head> 191 </head>
192 <body onload="runTest()"> 192 <body onload="runTest()">
193 <p>Tests file system project.</p> 193 <p>Tests file system project.</p>
194 </body> 194 </body>
195 </html> 195 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698