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

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

Issue 2780903003: DevTools: [Workspaces] remove support for .devtools file (Closed)
Patch Set: rebaseline 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector/file-system-project.html
diff --git a/third_party/WebKit/LayoutTests/inspector/file-system-project.html b/third_party/WebKit/LayoutTests/inspector/file-system-project.html
index cb27d54041c96d1e957cd670d6bdf57f6e88e02e..ef42204ab31f6b24649356cae6d78ea84fc289d2 100644
--- a/third_party/WebKit/LayoutTests/inspector/file-system-project.html
+++ b/third_party/WebKit/LayoutTests/inspector/file-system-project.html
@@ -178,26 +178,6 @@ function test()
}
},
- function testExcludesViaProject(next)
- {
- var fs = new InspectorTest.TestFileSystem("file:///var/www3");
- fs.root.addFile(".devtools", JSON.stringify({excludes:["/html2/"]}));
- fs.root.mkdir("html").addFile("foo.js", "");
- fs.root.mkdir(".git").addFile("foogit.js", "");
- fs.root.addFile("bar.js", "");
- fs.root.mkdir("html2").addFile("foo.js", "");
- fs.reportCreated(dumpExcludes);
-
- function dumpExcludes()
- {
- InspectorTest.addResult("");
- InspectorTest.addResult("-- Excluded /html2/ via .devtools --");
- dumpWorkspaceUISourceCodes();
- fs.reportRemoved();
- next();
- }
- },
-
function testFileAddedExternally(next)
{
var fs = new InspectorTest.TestFileSystem("file:///var/www4");

Powered by Google App Engine
This is Rietveld 408576698