| Index: third_party/WebKit/LayoutTests/inspector/sources/css-outline-dialog.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/css-outline-dialog.html b/third_party/WebKit/LayoutTests/inspector/sources/css-outline-dialog.html
|
| index e7e40ebfe02cd485047ab4a779c5e13b40beee50..6d4057b035d3f5faf7306f05fe84be07aff8ba61 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/css-outline-dialog.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/css-outline-dialog.html
|
| @@ -14,13 +14,13 @@ function test()
|
| function onSourceShown(sourceFrame)
|
| {
|
| textEditor = sourceFrame.textEditor;
|
| - InspectorTest.addSniffer(WebInspector.StyleSheetOutlineDialog.prototype, "refresh", onDialogFulfilled);
|
| - WebInspector.panels.sources._sourcesView._showOutlineDialog();
|
| + InspectorTest.addSniffer(Sources.StyleSheetOutlineDialog.prototype, "refresh", onDialogFulfilled);
|
| + UI.panels.sources._sourcesView._showOutlineDialog();
|
| }
|
|
|
| function onDialogFulfilled()
|
| {
|
| - WebInspector.StyleSheetOutlineDialog._instanceForTests.selectItem(1, "");
|
| + Sources.StyleSheetOutlineDialog._instanceForTests.selectItem(1, "");
|
| var selection = textEditor.selection();
|
| if (!selection.isEmpty()) {
|
| InspectorTest.addResult("ERROR: selection is not empty.");
|
|
|