| 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>
|
|
|