mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 06:09:08 +00:00
LibWeb: Mark CSSImportRule.styleSheet
IDL definition as nullable
The stylesheet may be null if its `supports()` condition does not match. This matches the current specification.
This commit is contained in:
parent
942f26a846
commit
d38b5e260e
Notes:
github-actions[bot]
2025-03-19 15:44:05 +00:00
Author: https://github.com/tcl3
Commit: d38b5e260e
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4001
Reviewed-by: https://github.com/AtkinsSJ
Reviewed-by: https://github.com/gmta ✅
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
||||||
interface CSSImportRule : CSSRule {
|
interface CSSImportRule : CSSRule {
|
||||||
readonly attribute USVString href;
|
readonly attribute USVString href;
|
||||||
// FIXME: [SameObject, PutForwards=mediaText] readonly attribute MediaList media;
|
// FIXME: [SameObject, PutForwards=mediaText] readonly attribute MediaList media;
|
||||||
[SameObject, ImplementedAs=style_sheet_for_bindings] readonly attribute CSSStyleSheet styleSheet;
|
[SameObject, ImplementedAs=style_sheet_for_bindings] readonly attribute CSSStyleSheet? styleSheet;
|
||||||
[FIXME] readonly attribute CSSOMString? layerName;
|
[FIXME] readonly attribute CSSOMString? layerName;
|
||||||
[FIXME] readonly attribute CSSOMString? supportsText;
|
[FIXME] readonly attribute CSSOMString? supportsText;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue