| Index: third_party/WebKit/LayoutTests/inspector/elements/styles-1/edit-inspector-stylesheet.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-1/edit-inspector-stylesheet.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-1/edit-inspector-stylesheet.html
|
| index c62d1eebd9d1c5aad57c61ae132ba82fcc201e31..e2ca7676d39ab08e3bc325322cddb66e2f3f7bd4 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/elements/styles-1/edit-inspector-stylesheet.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-1/edit-inspector-stylesheet.html
|
| @@ -11,13 +11,13 @@ function test()
|
|
|
| function onStylesSelected(node)
|
| {
|
| - WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.WorkingCopyCommitted, onWorkingCopyCommitted);
|
| + Workspace.workspace.addEventListener(Workspace.Workspace.Events.WorkingCopyCommitted, onWorkingCopyCommitted);
|
| InspectorTest.addNewRule("#inspected", new Function());
|
| }
|
|
|
| function onWorkingCopyCommitted(event)
|
| {
|
| - WebInspector.workspace.removeEventListener(WebInspector.Workspace.Events.WorkingCopyCommitted, onWorkingCopyCommitted);
|
| + Workspace.workspace.removeEventListener(Workspace.Workspace.Events.WorkingCopyCommitted, onWorkingCopyCommitted);
|
| var uiSourceCode = event.data.uiSourceCode;
|
| InspectorTest.addResult("Inspector stylesheet URL: " + uiSourceCode.displayName());
|
| uiSourceCode.requestContent().then(printContent(onContent))
|
|
|