Implement disabled attribute for <link rel="stylesheet"> (#36446)

Adds support for both the content and the IDL attribute.
Note this doesn't cover dynamic updates to `document.styleSheets` and
the owner node of the sheet.

Testing: Covered by WPT
Fixes: #26739

Signed-off-by: Oriol Brufau <obrufau@igalia.com>
This commit is contained in:
Oriol Brufau 2025-04-10 09:28:01 -07:00 committed by GitHub
parent e62aecb103
commit 2d40fb7fe2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 46 additions and 28 deletions

View file

@ -214,7 +214,7 @@ impl FetchResponseListener for StylesheetContext {
document.quirks_mode(),
));
if link.is_alternate() {
if link.is_effectively_disabled() {
sheet.set_disabled(true);
}