Add the missing "disabled" property to HTMLStyleElement (#1301)

Co-authored-by: saschanaz <saschanaz@users.noreply.github.com>
This commit is contained in:
Huy 2022-03-31 10:02:58 -07:00 коммит произвёл GitHub
Родитель b082106837
Коммит ff455461a5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 15 добавлений и 0 удалений

2
baselines/dom.generated.d.ts поставляемый
Просмотреть файл

@ -7846,6 +7846,8 @@ declare var HTMLSpanElement: {
/** A <style> element. It inherits properties and methods from its parent, HTMLElement, and from LinkStyle. */
interface HTMLStyleElement extends HTMLElement, LinkStyle {
/** Enables or disables the style sheet. */
disabled: boolean;
/** Sets or retrieves the media type. */
media: string;
/**

Просмотреть файл

@ -1126,6 +1126,16 @@
}
}
}
},
"HTMLStyleElement": {
"properties": {
"property": {
"disabled": {
"name": "disabled",
"type": "boolean"
}
}
}
}
}
},

Просмотреть файл

@ -1281,6 +1281,9 @@
},
"type": {
"comment": "Retrieves the CSS language in which the style sheet is written."
},
"disabled": {
"comment": "Enables or disables the style sheet."
}
}
}