mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Add CEReactions where needed
This commit is contained in:
parent
438191e0b2
commit
2460997ee1
100 changed files with 1025 additions and 979 deletions
|
@ -5,14 +5,21 @@
|
|||
// https://html.spec.whatwg.org/multipage/#htmlscriptelement
|
||||
[HTMLConstructor]
|
||||
interface HTMLScriptElement : HTMLElement {
|
||||
[CEReactions]
|
||||
attribute DOMString src;
|
||||
[CEReactions]
|
||||
attribute DOMString type;
|
||||
[CEReactions]
|
||||
attribute DOMString charset;
|
||||
[CEReactions]
|
||||
attribute boolean async;
|
||||
[CEReactions]
|
||||
attribute boolean defer;
|
||||
[CEReactions]
|
||||
attribute DOMString? crossOrigin;
|
||||
[Pure]
|
||||
[CEReactions, Pure]
|
||||
attribute DOMString text;
|
||||
[CEReactions]
|
||||
attribute DOMString integrity;
|
||||
|
||||
// also has obsolete members
|
||||
|
@ -20,6 +27,8 @@ interface HTMLScriptElement : HTMLElement {
|
|||
|
||||
// https://html.spec.whatwg.org/multipage/#HTMLScriptElement-partial
|
||||
partial interface HTMLScriptElement {
|
||||
[CEReactions]
|
||||
attribute DOMString event;
|
||||
[CEReactions]
|
||||
attribute DOMString htmlFor;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue