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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/search/source-frame-replace-2.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/search/source-frame-replace-2.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/search/source-frame-replace-2.html b/third_party/WebKit/LayoutTests/http/tests/inspector/search/source-frame-replace-2.html
index 5206500466592e2e6c175efb367ba69f957c430d..a360d81947032970022f10129d2408c336dc549b 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/search/source-frame-replace-2.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/search/source-frame-replace-2.html
@@ -9,15 +9,15 @@
function test()
{
- WebInspector.viewManager.showView("sources");
+ UI.viewManager.showView("sources");
InspectorTest.showScriptSource("search.js", didShowScriptSource);
function didShowScriptSource(sourceFrame)
{
- var searchConfig = new WebInspector.SearchableView.SearchConfig("replaceMe1", false, false);
+ var searchConfig = new UI.SearchableView.SearchConfig("replaceMe1", false, false);
InspectorTest.replaceAndDumpChange(sourceFrame, searchConfig, "replaced", false);
- var searchConfig = new WebInspector.SearchableView.SearchConfig("replaceMe2", false, false);
+ var searchConfig = new UI.SearchableView.SearchConfig("replaceMe2", false, false);
InspectorTest.replaceAndDumpChange(sourceFrame, searchConfig, "replaced", true);
InspectorTest.completeTest();

Powered by Google App Engine
This is Rietveld 408576698