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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/automapping-sane.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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/http/tests/inspector/persistence/automapping-sane.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/automapping-sane.html b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/automapping-sane.html
index ff31efa4aa052b6ff8062fb7dbcb7e1534e651d3..38996e130629d3e87209d3b1ff63e9bc458149d9 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/automapping-sane.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/automapping-sane.html
@@ -10,7 +10,7 @@ function test()
{
var timestamp = new Date("December 1, 1989");
var index_html = {
- contentType: WebInspector.resourceTypes.Document,
+ contentType: Common.resourceTypes.Document,
content: "<body>this is main resource</body>",
time: timestamp
};
@@ -19,7 +19,7 @@ function test()
time: null
};
var bar_css = {
- contentType: WebInspector.resourceTypes.Stylesheet,
+ contentType: Common.resourceTypes.Stylesheet,
content: "* { box-sizing: border-box }",
time: timestamp
};
@@ -27,7 +27,7 @@ function test()
var sources_module_json = { content: "module descriptor 2" };
var bazContent = "alert(1);";
- var automappingTest = new InspectorTest.AutomappingTest(new WebInspector.Workspace());
+ var automappingTest = new InspectorTest.AutomappingTest(new Workspace.Workspace());
automappingTest.addNetworkResources({
// Make sure main resource gets mapped.
"http://example.com": index_html,

Powered by Google App Engine
This is Rietveld 408576698