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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-big-array.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/console/console-big-array.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-big-array.html b/third_party/WebKit/LayoutTests/inspector/console/console-big-array.html
index 2537f5a3c122aead718b373645bd9d4c7716cffb..bb5660ab1b628609cdc9542da6ab952146cac8e2 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-big-array.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-big-array.html
@@ -59,9 +59,9 @@ function onload()
function test()
{
- WebInspector.ArrayGroupingTreeElement._bucketThreshold = 20;
+ Components.ArrayGroupingTreeElement._bucketThreshold = 20;
- var messages = WebInspector.ConsoleView.instance()._visibleViewMessages;
+ var messages = Console.ConsoleView.instance()._visibleViewMessages;
var sections = [];
for (var i = 0; i < messages.length; ++i) {
var consoleMessage = messages[i].consoleMessage();
@@ -76,7 +76,7 @@ function test()
}
}
- InspectorTest.addSniffer(WebInspector.ArrayGroupingTreeElement.prototype, "onpopulate", populateCalled, true);
+ InspectorTest.addSniffer(Components.ArrayGroupingTreeElement.prototype, "onpopulate", populateCalled, true);
var populated = false;
function populateCalled()
{

Powered by Google App Engine
This is Rietveld 408576698