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

Unified Diff: third_party/WebKit/LayoutTests/inspector/components/cookies-table.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/cookies-table.html
diff --git a/third_party/WebKit/LayoutTests/inspector/components/cookies-table.html b/third_party/WebKit/LayoutTests/inspector/components/cookies-table.html
index df5f88e467ffc5287eb4a93d670df457bc119ff7..b14f799e124531e01740f92f9044f8b1ce1acc56 100644
--- a/third_party/WebKit/LayoutTests/inspector/components/cookies-table.html
+++ b/third_party/WebKit/LayoutTests/inspector/components/cookies-table.html
@@ -20,7 +20,7 @@ var test = function () {
}
function createSortAndDumpCookies(cookieData, column, isAsc) {
- const table = new Components.CookiesTable(true);
+ const table = new CookieTable.CookiesTable(true);
const cookies = cookieData.map(createCookie);
table._dataGrid = {isSortOrderAscending: () => isAsc, sortColumnId: () => column};
table._sortCookies(cookies);
@@ -46,7 +46,7 @@ var test = function () {
InspectorTest.completeTest();
}
- self.runtime.loadModulePromise('components_lazy').then(run);
+ self.runtime.loadModulePromise('cookie_table').then(run);
};
</script>

Powered by Google App Engine
This is Rietveld 408576698