| 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,
|
|
|