diff options
author | Oriol Brufau <obrufau@igalia.com> | 2024-03-15 00:48:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 23:48:29 +0000 |
commit | bc4f1c217d28ce972632ab42090d741c76b67e3b (patch) | |
tree | 9ed072fba82728d2b1140f49d153783a0239944c /components/script/dom/webidls/HTMLStyleElement.webidl | |
parent | ad37a54f59f4eef2c8f815a3a59ab7d928b2946f (diff) | |
download | servo-bc4f1c217d28ce972632ab42090d741c76b67e3b.tar.gz servo-bc4f1c217d28ce972632ab42090d741c76b67e3b.zip |
Implement HTMLStyleElement.disabled attribute (#31682)
https://html.spec.whatwg.org/multipage/#dom-style-disabled
Diffstat (limited to 'components/script/dom/webidls/HTMLStyleElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLStyleElement.webidl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/webidls/HTMLStyleElement.webidl b/components/script/dom/webidls/HTMLStyleElement.webidl index dd68cb6270a..0bcb86af24b 100644 --- a/components/script/dom/webidls/HTMLStyleElement.webidl +++ b/components/script/dom/webidls/HTMLStyleElement.webidl @@ -7,6 +7,7 @@ interface HTMLStyleElement : HTMLElement { [HTMLConstructor] constructor(); + attribute boolean disabled; // [CEReactions] // attribute DOMString media; // [CEReactions] |