OLD | NEW |
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 Loading... |
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 Loading... |
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> |
OLD | NEW |