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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-big-array.html

Issue 2712513002: DevTools: extract ObjectUI module from Components (Closed)
Patch Set: fix build.gn Created 3 years, 10 months 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 bb5660ab1b628609cdc9542da6ab952146cac8e2..27c6510675a7202f9d5b9152dba5d560717e4542 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-big-array.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-big-array.html
@@ -59,7 +59,7 @@ function onload()
function test()
{
- Components.ArrayGroupingTreeElement._bucketThreshold = 20;
+ ObjectUI.ArrayGroupingTreeElement._bucketThreshold = 20;
var messages = Console.ConsoleView.instance()._visibleViewMessages;
var sections = [];
@@ -76,7 +76,7 @@ function test()
}
}
- InspectorTest.addSniffer(Components.ArrayGroupingTreeElement.prototype, "onpopulate", populateCalled, true);
+ InspectorTest.addSniffer(ObjectUI.ArrayGroupingTreeElement.prototype, "onpopulate", populateCalled, true);
var populated = false;
function populateCalled()
{

Powered by Google App Engine
This is Rietveld 408576698