chromium/third_party/blink/renderer/modules/browsing_topics/browsing_topics_document_supplement.idl

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://github.com/jkarlin/topics

[
    ImplementedAs=BrowsingTopicsDocumentSupplement,
    RuntimeEnabled=TopicsDocumentAPI
] partial interface Document {
    [
        NewObject,
        CallWith=ScriptState,
        RaisesException,
        SecureContext,
        MeasureAs=TopicsAPI_BrowsingTopics_Method
    ]
    Promise<sequence<BrowsingTopic>> browsingTopics(optional BrowsingTopicsOptions options);
};