Skip to content
This repository has been archived by the owner on Jul 30, 2022. It is now read-only.

Commit

Permalink
[WM]: use octet for assetScale in MonetizationProgressEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
sidvishnoi committed Feb 4, 2021
1 parent 81adc00 commit 253f29f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions dom/webidl/MonetizationProgressEvent.webidl
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
[Exposed=Window, SecureContext]
interface MonetizationProgressEvent : Event {
[ChromeOnly] constructor(DOMString type, MonetizationProgressEventInit eventInitDict);
readonly attribute USVString url;
readonly attribute DOMString amount;
readonly attribute DOMString assetCode;
readonly attribute unsigned long assetScale;
readonly attribute DOMString? receipt;
readonly attribute USVString url;
readonly attribute DOMString amount;
readonly attribute DOMString assetCode;
readonly attribute octet assetScale;
readonly attribute DOMString? receipt;
};

dictionary MonetizationProgressEventInit : EventInit {
required USVString url;
required DOMString amount;
required DOMString assetCode;
required unsigned long assetScale;
DOMString? receipt = null;
required USVString url;
required DOMString amount;
required DOMString assetCode;
required octet assetScale;
DOMString? receipt = null;
};

0 comments on commit 253f29f

Please sign in to comment.