Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Put trusted type first when declaring union in IDL files #564

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions spec/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1146,10 +1146,10 @@ Note: Using these IDL attributes is the recommended way of dynamically setting t

<pre class="idl exclude">
partial interface HTMLScriptElement {
[CEReactions] attribute ([LegacyNullToEmptyString] DOMString or TrustedScript) innerText;
[CEReactions] attribute (DOMString or TrustedScript)? textContent;
[CEReactions] attribute (USVString or TrustedScriptURL) src;
[CEReactions] attribute (DOMString or TrustedScript) text;
[CEReactions] attribute (TrustedScript or [LegacyNullToEmptyString] DOMString) innerText;
[CEReactions] attribute (TrustedScript or DOMString)? textContent;
[CEReactions] attribute (TrustedScriptURL or USVString) src;
[CEReactions] attribute (TrustedScript or DOMString) text;
};
</pre>

Expand Down
Loading