Skip to content

Commit

Permalink
DigitalCredential's data should be marked at SameObject (#199)
Browse files Browse the repository at this point in the history
This is mostly just a small optimization, but the .data should have been marked as SameObject, as it never changes.
  • Loading branch information
marcoscaceres authored Jan 16, 2025
1 parent b365fef commit 15113fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ <h2>
[Exposed=Window, SecureContext]
interface DigitalCredential : Credential {
readonly attribute DOMString protocol;
readonly attribute object data;
[SameObject] readonly attribute object data;
};
</pre>
<p>
Expand Down

0 comments on commit 15113fc

Please sign in to comment.