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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/css-outline-dialog.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/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.");

Powered by Google App Engine
This is Rietveld 408576698