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

Unified Diff: third_party/WebKit/LayoutTests/inspector/components/datagrid-autosize.html

Issue 2623743002: DevTools: extract modules (non-extensions) (Closed)
Patch Set: rebaseline Created 3 years, 11 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/components/datagrid-autosize.html
diff --git a/third_party/WebKit/LayoutTests/inspector/components/datagrid-autosize.html b/third_party/WebKit/LayoutTests/inspector/components/datagrid-autosize.html
index 595bbadaaa3d74927a3c62fdc6a8d053ddcd090f..bd1f6214b1e5f1c4d65538a8c5a93155777d5861 100644
--- a/third_party/WebKit/LayoutTests/inspector/components/datagrid-autosize.html
+++ b/third_party/WebKit/LayoutTests/inspector/components/datagrid-autosize.html
@@ -4,11 +4,11 @@
<script type="text/javascript">
function test()
{
- runtime.loadModulePromise("ui_lazy").then(function()
+ runtime.loadModulePromise("data_grid").then(function()
{
function testAutoSize(widths, minPercent, maxPercent) {
InspectorTest.addResult("Auto sizing " + JSON.stringify(widths) + ", minPercent=" + minPercent + ", maxPercent=" + maxPercent);
- var result = UI.DataGrid.prototype._autoSizeWidths(widths, minPercent, maxPercent);
+ var result = DataGrid.DataGrid.prototype._autoSizeWidths(widths, minPercent, maxPercent);
InspectorTest.addResult(" " + JSON.stringify(result));
}

Powered by Google App Engine
This is Rietveld 408576698