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

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

Issue 2349343002: DevTools: introduce persistence/ module (Closed)
Patch Set: reupload Created 4 years, 3 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 ae72afd50223c57a9167ffbd64cc4ae3b02f1c26..713a3c3ab0a8d73498984033389fd6a8364b067e 100644
--- a/third_party/WebKit/LayoutTests/inspector/file-system-project.html
+++ b/third_party/WebKit/LayoutTests/inspector/file-system-project.html
@@ -89,21 +89,6 @@ function test()
function uiSourceCodesDumped()
{
dumpUISourceCodeLocations(uiSourceCodes, 5);
- InspectorTest.addResult("UISourceCode uri to url mappings:");
- for (var i = 0; i < uiSourceCodes.length; ++i) {
- var url = WebInspector.networkMapping.networkURL(uiSourceCodes[i]);
- if (!url)
- continue;
- InspectorTest.addResult(" " + uiSourceCodes[i].url() + " -> " + url);
- }
- InspectorTest.addResult("UISourceCode url to uri mappings:");
- for (var i = 0; i < uiSourceCodes.length; ++i) {
- var url = WebInspector.networkMapping.networkURL(uiSourceCodes[i]);
- if (!url)
- continue;
- var uri = WebInspector.networkMapping.uiSourceCodeForURLForAnyTarget(url).url();
- InspectorTest.addResult(" " + url + " -> " + uri);
- }
WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.WorkingCopyCommitted, contentCommitted, this);
uiSourceCodes[0].addRevision("<Modified UISourceCode content>");
}

Powered by Google App Engine
This is Rietveld 408576698