mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-08 02:26:10 +00:00
LibWeb: Use 'FIXME' extended attribute where possible
This improves the debuggability of many live web pages :^)
This commit is contained in:
parent
7c69b4737b
commit
4fe0cbcf85
Notes:
sideshowbarker
2024-07-17 18:06:52 +09:00
Author: https://github.com/shannonbooth
Commit: 4fe0cbcf85
Pull-request: https://github.com/SerenityOS/serenity/pull/24377
Reviewed-by: https://github.com/tcl3
55 changed files with 184 additions and 187 deletions
|
@ -8,6 +8,6 @@ interface CSSImportRule : CSSRule {
|
|||
readonly attribute USVString href;
|
||||
// FIXME: [SameObject, PutForwards=mediaText] readonly attribute MediaList media;
|
||||
[SameObject, ImplementedAs=style_sheet_for_bindings] readonly attribute CSSStyleSheet styleSheet;
|
||||
// FIXME: readonly attribute CSSOMString? layerName;
|
||||
// FIXME: readonly attribute CSSOMString? supportsText;
|
||||
[FIXME] readonly attribute CSSOMString? layerName;
|
||||
[FIXME] readonly attribute CSSOMString? supportsText;
|
||||
};
|
||||
|
|
|
@ -5,11 +5,11 @@
|
|||
[Exposed=Window]
|
||||
interface CSSKeyframesRule : CSSRule {
|
||||
attribute CSSOMString name;
|
||||
// FIXME: readonly attribute CSSRuleList cssRules;
|
||||
[FIXME] readonly attribute CSSRuleList cssRules;
|
||||
readonly attribute unsigned long length;
|
||||
|
||||
getter CSSKeyframeRule (unsigned long index);
|
||||
// FIXME: undefined appendRule(CSSOMString rule);
|
||||
// FIXME: undefined deleteRule(CSSOMString select);
|
||||
// FIXME: CSSKeyframeRule? findRule(CSSOMString select);
|
||||
[FIXME] undefined appendRule(CSSOMString rule);
|
||||
[FIXME] undefined deleteRule(CSSOMString select);
|
||||
[FIXME] CSSKeyframeRule? findRule(CSSOMString select);
|
||||
};
|
||||
|
|
|
@ -13,7 +13,7 @@ interface CSSStyleDeclaration {
|
|||
[CEReactions] undefined setProperty(CSSOMString property, [LegacyNullToEmptyString] CSSOMString value, optional [LegacyNullToEmptyString] CSSOMString priority = "");
|
||||
[CEReactions] CSSOMString removeProperty(CSSOMString property);
|
||||
|
||||
// FIXME: readonly attribute CSSRule? parentRule;
|
||||
[FIXME] readonly attribute CSSRule? parentRule;
|
||||
// FIXME: [CEReactions] attribute [LegacyNullToEmptyString] CSSOMString cssFloat;
|
||||
|
||||
};
|
||||
|
|
|
@ -20,8 +20,8 @@ interface FontFaceSet : EventTarget {
|
|||
|
||||
// FIXME: setlike<FontFace>;
|
||||
FontFaceSet add(FontFace font);
|
||||
// FIXME: boolean delete(FontFace font);
|
||||
// FIXME: clear();
|
||||
[FIXME] boolean delete(FontFace font);
|
||||
[FIXME] undefined clear();
|
||||
|
||||
// events for when loading state changes
|
||||
// FIXME: attribute EventHandler onloading;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue