servo/tests/wpt/web-platform-tests/resources/chromium/content-index-helpers.js

9 lines
374 B
JavaScript

import {ContentIndexService} from '/gen/third_party/blink/public/mojom/content_index/content_index.mojom.m.js';
// Returns a promise if the chromium based browser fetches icons for
// content-index.
export async function fetchesIcons() {
const remote = ContentIndexService.getRemote();
const {iconSizes} = await remote.getIconSizes();
return iconSizes.length > 0;
};