blob: fba87e49769cd66d2a7e6db4cfdf066c81a6704e [file] [log] [blame]
// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into webref
// (https://github.com/w3c/webref)
// Source: Attribution Reporting (https://wicg.github.io/conversion-measurement-api/)
partial interface HTMLAnchorElement {
[CEReactions] attribute USVString attributionDestination;
[CEReactions] attribute DOMString attributionSourceEventId;
[CEReactions] attribute USVString attributionReportTo;
[CEReactions] attribute long long attributionExpiry;
[CEReactions] attribute long long attributionSourcePriority;
[CEReactions] attribute boolean registerAttributionSource;
};
dictionary AttributionSourceParams {
required USVString attributionDestination;
required DOMString attributionSourceEventId;
USVString attributionReportTo;
long long attributionExpiry;
long long attributionSourcePriority;
};
[Exposed=Window, SecureContext]
interface AttributionReporting {
Promise<undefined> registerAttributionSource(AttributionSourceParams params);
};
[SecureContext]
partial interface Window {
readonly attribute AttributionReporting attributionReporting;
};