2024-06-28 14:57:42 +02:00
|
|
|
AbortController
|
|
|
|
|
AbortSignal
|
|
|
|
|
AbstractRange
|
|
|
|
|
AggregateError
|
2024-09-18 09:09:18 -04:00
|
|
|
AnalyserNode
|
2024-06-28 14:57:42 +02:00
|
|
|
Animation
|
|
|
|
|
AnimationEffect
|
|
|
|
|
AnimationEvent
|
|
|
|
|
AnimationPlaybackEvent
|
|
|
|
|
AnimationTimeline
|
|
|
|
|
Array
|
|
|
|
|
ArrayBuffer
|
2025-01-17 10:09:01 -05:00
|
|
|
AsyncDisposableStack
|
2024-06-28 14:57:42 +02:00
|
|
|
Attr
|
|
|
|
|
Audio
|
|
|
|
|
AudioBuffer
|
2024-07-22 17:51:37 +03:00
|
|
|
AudioBufferSourceNode
|
2024-06-28 14:57:42 +02:00
|
|
|
AudioContext
|
2024-07-24 16:44:49 +12:00
|
|
|
AudioDestinationNode
|
2024-10-17 21:26:01 +02:00
|
|
|
AudioListener
|
2024-06-28 14:57:42 +02:00
|
|
|
AudioNode
|
|
|
|
|
AudioParam
|
|
|
|
|
AudioScheduledSourceNode
|
|
|
|
|
AudioTrack
|
|
|
|
|
AudioTrackList
|
2025-03-04 22:51:08 +01:00
|
|
|
BarProp
|
2024-06-28 14:57:42 +02:00
|
|
|
BaseAudioContext
|
2024-10-02 23:54:48 +01:00
|
|
|
BeforeUnloadEvent
|
2024-06-28 14:57:42 +02:00
|
|
|
BigInt
|
|
|
|
|
BigInt64Array
|
|
|
|
|
BigUint64Array
|
2024-07-22 17:51:37 +03:00
|
|
|
BiquadFilterNode
|
2024-06-28 14:57:42 +02:00
|
|
|
Blob
|
|
|
|
|
Boolean
|
2024-07-13 14:51:28 +01:00
|
|
|
BroadcastChannel
|
2024-11-01 14:03:15 +01:00
|
|
|
BufferedChangeEvent
|
2024-06-28 14:57:42 +02:00
|
|
|
ByteLengthQueuingStrategy
|
|
|
|
|
CDATASection
|
|
|
|
|
CSSAnimation
|
|
|
|
|
CSSConditionRule
|
2025-07-18 10:53:55 +02:00
|
|
|
CSSCounterStyleRule
|
2025-04-03 11:44:06 +01:00
|
|
|
CSSFontFaceDescriptors
|
2024-06-28 14:57:42 +02:00
|
|
|
CSSFontFaceRule
|
|
|
|
|
CSSGroupingRule
|
2025-09-12 15:07:19 +01:00
|
|
|
CSSImageValue
|
2024-06-28 14:57:42 +02:00
|
|
|
CSSImportRule
|
|
|
|
|
CSSKeyframeRule
|
|
|
|
|
CSSKeyframesRule
|
2025-08-14 12:33:40 +01:00
|
|
|
CSSKeywordValue
|
2024-09-02 16:45:25 +01:00
|
|
|
CSSLayerBlockRule
|
|
|
|
|
CSSLayerStatementRule
|
2025-05-15 11:48:56 +01:00
|
|
|
CSSMarginRule
|
2025-08-21 12:47:26 +01:00
|
|
|
CSSMathClamp
|
2025-08-19 16:23:12 +01:00
|
|
|
CSSMathInvert
|
2025-08-19 17:18:12 +01:00
|
|
|
CSSMathMax
|
2025-08-19 17:07:05 +01:00
|
|
|
CSSMathMin
|
2025-08-19 16:03:09 +01:00
|
|
|
CSSMathNegate
|
2025-08-19 15:35:09 +01:00
|
|
|
CSSMathProduct
|
2025-08-19 15:11:43 +01:00
|
|
|
CSSMathSum
|
2025-08-19 14:24:39 +01:00
|
|
|
CSSMathValue
|
2024-06-28 14:57:42 +02:00
|
|
|
CSSMediaRule
|
|
|
|
|
CSSNamespaceRule
|
2024-10-15 15:59:31 +01:00
|
|
|
CSSNestedDeclarations
|
2025-08-19 12:21:27 +01:00
|
|
|
CSSNumericArray
|
2025-08-19 13:55:42 +01:00
|
|
|
CSSNumericValue
|
2025-05-13 12:17:41 +01:00
|
|
|
CSSPageDescriptors
|
|
|
|
|
CSSPageRule
|
2024-10-17 23:28:09 +01:00
|
|
|
CSSPropertyRule
|
2024-06-28 14:57:42 +02:00
|
|
|
CSSRule
|
|
|
|
|
CSSRuleList
|
|
|
|
|
CSSStyleDeclaration
|
LibWeb/CSS: Merge style declaration subclasses into CSSStyleProperties
We previously had PropertyOwningCSSStyleDeclaration and
ResolvedCSSStyleDeclaration, representing the current style properties
and resolved style respectively. Both of these were the
CSSStyleDeclaration type in the CSSOM. (We also had
ElementInlineCSSStyleDeclaration but I removed that in a previous
commit.)
In the meantime, the spec has changed so that these should now be a new
CSSStyleProperties type in the CSSOM. Also, we need to subclass
CSSStyleDeclaration for things like CSSFontFaceRule's list of
descriptors, which means it wouldn't hold style properties.
So, this commit does the fairly messy work of combining these two types
into a new CSSStyleProperties class. A lot of what previously was done
as separate methods in the two classes, now follows the spec steps of
"if the readonly flag is set, do X" instead, which is hopefully easier
to follow too.
There is still some functionality in CSSStyleDeclaration that belongs in
CSSStyleProperties, but I'll do that next. To avoid a huge diff for
"CSSStyleDeclaration-all-supported-properties-and-default-values.txt"
both here and in the following commit, we don't apply the (currently
empty) CSSStyleProperties prototype yet.
2025-03-17 17:50:49 +00:00
|
|
|
CSSStyleProperties
|
2024-06-28 14:57:42 +02:00
|
|
|
CSSStyleRule
|
|
|
|
|
CSSStyleSheet
|
2025-08-08 12:57:23 +01:00
|
|
|
CSSStyleValue
|
2024-06-28 14:57:42 +02:00
|
|
|
CSSSupportsRule
|
2025-09-12 16:32:58 +01:00
|
|
|
CSSTransformComponent
|
2024-06-28 14:57:42 +02:00
|
|
|
CSSTransition
|
2025-08-18 15:12:55 +01:00
|
|
|
CSSUnitValue
|
2025-08-14 16:43:12 +01:00
|
|
|
CSSUnparsedValue
|
|
|
|
|
CSSVariableReferenceValue
|
2025-06-05 17:50:08 +02:00
|
|
|
CacheStorage
|
2024-06-28 14:57:42 +02:00
|
|
|
CanvasGradient
|
|
|
|
|
CanvasPattern
|
|
|
|
|
CanvasRenderingContext2D
|
2024-11-25 14:30:36 +01:00
|
|
|
ChannelMergerNode
|
2025-01-01 22:00:52 +00:00
|
|
|
ChannelSplitterNode
|
2024-06-28 14:57:42 +02:00
|
|
|
CharacterData
|
|
|
|
|
Clipboard
|
2024-08-20 18:26:55 -04:00
|
|
|
ClipboardEvent
|
2024-11-30 20:23:38 -08:00
|
|
|
ClipboardItem
|
2024-06-28 14:57:42 +02:00
|
|
|
CloseEvent
|
|
|
|
|
CloseWatcher
|
2025-04-04 12:35:20 +02:00
|
|
|
CommandEvent
|
2024-06-28 14:57:42 +02:00
|
|
|
Comment
|
2024-07-18 20:22:44 +01:00
|
|
|
CompositionEvent
|
2024-11-15 11:11:47 -05:00
|
|
|
CompressionStream
|
2025-01-02 10:14:31 +00:00
|
|
|
ConstantSourceNode
|
2025-08-07 15:31:24 +03:00
|
|
|
CookieChangeEvent
|
2025-08-04 22:17:20 +03:00
|
|
|
CookieStore
|
2024-06-28 14:57:42 +02:00
|
|
|
CountQueuingStrategy
|
2025-01-30 22:29:26 +01:00
|
|
|
Credential
|
|
|
|
|
CredentialsContainer
|
2024-06-28 14:57:42 +02:00
|
|
|
Crypto
|
|
|
|
|
CryptoKey
|
|
|
|
|
CustomElementRegistry
|
|
|
|
|
CustomEvent
|
2025-07-03 17:32:10 +01:00
|
|
|
CustomStateSet
|
2024-06-28 14:57:42 +02:00
|
|
|
DOMException
|
|
|
|
|
DOMImplementation
|
|
|
|
|
DOMMatrix
|
|
|
|
|
DOMMatrixReadOnly
|
|
|
|
|
DOMParser
|
|
|
|
|
DOMPoint
|
|
|
|
|
DOMPointReadOnly
|
|
|
|
|
DOMQuad
|
|
|
|
|
DOMRect
|
|
|
|
|
DOMRectList
|
|
|
|
|
DOMRectReadOnly
|
2024-07-14 12:31:50 +01:00
|
|
|
DOMStringList
|
2024-06-28 14:57:42 +02:00
|
|
|
DOMStringMap
|
|
|
|
|
DOMTokenList
|
|
|
|
|
DataTransfer
|
2024-08-15 12:18:56 -04:00
|
|
|
DataTransferItem
|
2024-08-15 12:20:22 -04:00
|
|
|
DataTransferItemList
|
2024-06-28 14:57:42 +02:00
|
|
|
DataView
|
|
|
|
|
Date
|
2024-11-15 14:40:04 -05:00
|
|
|
DecompressionStream
|
2025-01-03 23:42:22 +00:00
|
|
|
DelayNode
|
2024-06-28 14:57:42 +02:00
|
|
|
DisposableStack
|
|
|
|
|
Document
|
|
|
|
|
DocumentFragment
|
|
|
|
|
DocumentTimeline
|
|
|
|
|
DocumentType
|
2024-07-08 18:33:12 +02:00
|
|
|
DragEvent
|
2024-06-28 14:57:42 +02:00
|
|
|
DynamicsCompressorNode
|
|
|
|
|
Element
|
|
|
|
|
ElementInternals
|
|
|
|
|
Error
|
|
|
|
|
ErrorEvent
|
|
|
|
|
EvalError
|
|
|
|
|
Event
|
|
|
|
|
EventSource
|
|
|
|
|
EventTarget
|
2025-01-30 22:29:26 +01:00
|
|
|
FederatedCredential
|
2024-06-28 14:57:42 +02:00
|
|
|
File
|
|
|
|
|
FileList
|
|
|
|
|
FileReader
|
2024-08-23 19:41:19 +01:00
|
|
|
FileSystemEntry
|
2024-06-28 14:57:42 +02:00
|
|
|
FinalizationRegistry
|
2024-11-09 14:27:57 -06:00
|
|
|
Float16Array
|
2024-06-28 14:57:42 +02:00
|
|
|
Float32Array
|
|
|
|
|
Float64Array
|
|
|
|
|
FocusEvent
|
|
|
|
|
FontFace
|
|
|
|
|
FontFaceSet
|
|
|
|
|
FormData
|
|
|
|
|
FormDataEvent
|
|
|
|
|
Function
|
|
|
|
|
GainNode
|
2025-07-22 15:11:18 +02:00
|
|
|
Gamepad
|
2025-08-18 17:27:00 +01:00
|
|
|
GamepadButton
|
|
|
|
|
GamepadEvent
|
|
|
|
|
GamepadHapticActuator
|
2025-06-19 15:28:02 +02:00
|
|
|
Geolocation
|
|
|
|
|
GeolocationCoordinates
|
|
|
|
|
GeolocationPosition
|
|
|
|
|
GeolocationPositionError
|
2024-06-28 14:57:42 +02:00
|
|
|
HTMLAllCollection
|
|
|
|
|
HTMLAnchorElement
|
|
|
|
|
HTMLAreaElement
|
|
|
|
|
HTMLAudioElement
|
|
|
|
|
HTMLBRElement
|
|
|
|
|
HTMLBaseElement
|
|
|
|
|
HTMLBodyElement
|
|
|
|
|
HTMLButtonElement
|
|
|
|
|
HTMLCanvasElement
|
|
|
|
|
HTMLCollection
|
|
|
|
|
HTMLDListElement
|
|
|
|
|
HTMLDataElement
|
|
|
|
|
HTMLDataListElement
|
|
|
|
|
HTMLDetailsElement
|
|
|
|
|
HTMLDialogElement
|
|
|
|
|
HTMLDirectoryElement
|
|
|
|
|
HTMLDivElement
|
|
|
|
|
HTMLDocument
|
|
|
|
|
HTMLElement
|
|
|
|
|
HTMLEmbedElement
|
|
|
|
|
HTMLFieldSetElement
|
|
|
|
|
HTMLFontElement
|
|
|
|
|
HTMLFormControlsCollection
|
|
|
|
|
HTMLFormElement
|
|
|
|
|
HTMLFrameElement
|
|
|
|
|
HTMLFrameSetElement
|
|
|
|
|
HTMLHRElement
|
|
|
|
|
HTMLHeadElement
|
|
|
|
|
HTMLHeadingElement
|
|
|
|
|
HTMLHtmlElement
|
|
|
|
|
HTMLIFrameElement
|
|
|
|
|
HTMLImageElement
|
|
|
|
|
HTMLInputElement
|
|
|
|
|
HTMLLIElement
|
|
|
|
|
HTMLLabelElement
|
|
|
|
|
HTMLLegendElement
|
|
|
|
|
HTMLLinkElement
|
|
|
|
|
HTMLMapElement
|
|
|
|
|
HTMLMarqueeElement
|
|
|
|
|
HTMLMediaElement
|
|
|
|
|
HTMLMenuElement
|
|
|
|
|
HTMLMetaElement
|
|
|
|
|
HTMLMeterElement
|
|
|
|
|
HTMLModElement
|
|
|
|
|
HTMLOListElement
|
|
|
|
|
HTMLObjectElement
|
|
|
|
|
HTMLOptGroupElement
|
|
|
|
|
HTMLOptionElement
|
|
|
|
|
HTMLOptionsCollection
|
|
|
|
|
HTMLOutputElement
|
|
|
|
|
HTMLParagraphElement
|
|
|
|
|
HTMLParamElement
|
|
|
|
|
HTMLPictureElement
|
|
|
|
|
HTMLPreElement
|
|
|
|
|
HTMLProgressElement
|
|
|
|
|
HTMLQuoteElement
|
|
|
|
|
HTMLScriptElement
|
|
|
|
|
HTMLSelectElement
|
|
|
|
|
HTMLSlotElement
|
|
|
|
|
HTMLSourceElement
|
|
|
|
|
HTMLSpanElement
|
|
|
|
|
HTMLStyleElement
|
|
|
|
|
HTMLTableCaptionElement
|
|
|
|
|
HTMLTableCellElement
|
|
|
|
|
HTMLTableColElement
|
|
|
|
|
HTMLTableElement
|
|
|
|
|
HTMLTableRowElement
|
|
|
|
|
HTMLTableSectionElement
|
|
|
|
|
HTMLTemplateElement
|
|
|
|
|
HTMLTextAreaElement
|
|
|
|
|
HTMLTimeElement
|
|
|
|
|
HTMLTitleElement
|
|
|
|
|
HTMLTrackElement
|
|
|
|
|
HTMLUListElement
|
|
|
|
|
HTMLUnknownElement
|
|
|
|
|
HTMLVideoElement
|
|
|
|
|
HashChangeEvent
|
|
|
|
|
Headers
|
|
|
|
|
History
|
2024-11-07 18:49:31 +01:00
|
|
|
IDBCursor
|
2025-05-13 11:04:55 +02:00
|
|
|
IDBCursorWithValue
|
2024-11-04 18:53:05 +01:00
|
|
|
IDBDatabase
|
2024-06-28 14:57:42 +02:00
|
|
|
IDBFactory
|
2024-11-07 18:52:59 +01:00
|
|
|
IDBIndex
|
2024-11-07 19:04:11 +01:00
|
|
|
IDBKeyRange
|
2024-11-07 18:56:26 +01:00
|
|
|
IDBObjectStore
|
2024-06-28 14:57:42 +02:00
|
|
|
IDBOpenDBRequest
|
2025-07-09 14:35:33 +02:00
|
|
|
IDBRecord
|
2024-06-28 14:57:42 +02:00
|
|
|
IDBRequest
|
2024-11-07 19:00:20 +01:00
|
|
|
IDBTransaction
|
2024-11-04 19:17:54 +01:00
|
|
|
IDBVersionChangeEvent
|
2024-06-28 14:57:42 +02:00
|
|
|
IdleDeadline
|
|
|
|
|
Image
|
|
|
|
|
ImageBitmap
|
|
|
|
|
ImageData
|
2024-07-18 19:35:14 +01:00
|
|
|
InputEvent
|
2024-06-28 14:57:42 +02:00
|
|
|
Int16Array
|
|
|
|
|
Int32Array
|
|
|
|
|
Int8Array
|
|
|
|
|
InternalError
|
|
|
|
|
IntersectionObserver
|
|
|
|
|
IntersectionObserverEntry
|
|
|
|
|
Iterator
|
|
|
|
|
KeyboardEvent
|
|
|
|
|
KeyframeEffect
|
|
|
|
|
Location
|
2024-11-01 14:03:15 +01:00
|
|
|
ManagedMediaSource
|
|
|
|
|
ManagedSourceBuffer
|
2024-06-28 14:57:42 +02:00
|
|
|
Map
|
|
|
|
|
MathMLElement
|
2024-09-04 23:52:21 +01:00
|
|
|
MediaCapabilities
|
2025-01-15 23:07:00 +00:00
|
|
|
MediaElementAudioSourceNode
|
2024-06-28 14:57:42 +02:00
|
|
|
MediaError
|
2025-07-31 12:43:03 +02:00
|
|
|
MediaKeySystemAccess
|
2024-06-28 14:57:42 +02:00
|
|
|
MediaList
|
|
|
|
|
MediaQueryList
|
|
|
|
|
MediaQueryListEvent
|
2024-11-01 14:03:15 +01:00
|
|
|
MediaSource
|
|
|
|
|
MediaSourceHandle
|
2024-06-28 14:57:42 +02:00
|
|
|
MessageChannel
|
|
|
|
|
MessageEvent
|
|
|
|
|
MessagePort
|
|
|
|
|
MimeType
|
|
|
|
|
MimeTypeArray
|
|
|
|
|
MouseEvent
|
|
|
|
|
MutationObserver
|
|
|
|
|
MutationRecord
|
|
|
|
|
NamedNodeMap
|
|
|
|
|
NavigateEvent
|
|
|
|
|
Navigation
|
|
|
|
|
NavigationCurrentEntryChangeEvent
|
|
|
|
|
NavigationDestination
|
|
|
|
|
NavigationHistoryEntry
|
|
|
|
|
NavigationTransition
|
|
|
|
|
Navigator
|
|
|
|
|
Node
|
|
|
|
|
NodeFilter
|
|
|
|
|
NodeIterator
|
|
|
|
|
NodeList
|
2025-09-17 09:14:38 +02:00
|
|
|
Notification
|
2024-06-28 14:57:42 +02:00
|
|
|
Number
|
|
|
|
|
Object
|
|
|
|
|
OfflineAudioContext
|
2025-03-07 00:19:45 +01:00
|
|
|
OffscreenCanvas
|
|
|
|
|
OffscreenCanvasRenderingContext2D
|
2024-06-28 14:57:42 +02:00
|
|
|
Option
|
|
|
|
|
OscillatorNode
|
|
|
|
|
PageTransitionEvent
|
2024-12-13 21:40:25 +00:00
|
|
|
PannerNode
|
2025-01-30 22:29:26 +01:00
|
|
|
PasswordCredential
|
2024-06-28 14:57:42 +02:00
|
|
|
Path2D
|
|
|
|
|
Performance
|
|
|
|
|
PerformanceEntry
|
2024-09-22 15:12:55 -04:00
|
|
|
PerformanceEventTiming
|
2024-06-28 14:57:42 +02:00
|
|
|
PerformanceMark
|
|
|
|
|
PerformanceMeasure
|
2024-08-01 19:50:52 -06:00
|
|
|
PerformanceNavigation
|
2024-06-28 14:57:42 +02:00
|
|
|
PerformanceObserver
|
|
|
|
|
PerformanceObserverEntryList
|
2025-02-26 15:51:05 +00:00
|
|
|
PerformanceResourceTiming
|
2024-06-28 14:57:42 +02:00
|
|
|
PerformanceTiming
|
|
|
|
|
PeriodicWave
|
|
|
|
|
Plugin
|
|
|
|
|
PluginArray
|
|
|
|
|
PointerEvent
|
|
|
|
|
PopStateEvent
|
|
|
|
|
ProcessingInstruction
|
|
|
|
|
ProgressEvent
|
|
|
|
|
Promise
|
|
|
|
|
PromiseRejectionEvent
|
|
|
|
|
RadioNodeList
|
|
|
|
|
Range
|
|
|
|
|
RangeError
|
|
|
|
|
ReadableByteStreamController
|
|
|
|
|
ReadableStream
|
|
|
|
|
ReadableStreamBYOBReader
|
|
|
|
|
ReadableStreamBYOBRequest
|
|
|
|
|
ReadableStreamDefaultController
|
|
|
|
|
ReadableStreamDefaultReader
|
|
|
|
|
ReferenceError
|
|
|
|
|
RegExp
|
|
|
|
|
Request
|
|
|
|
|
ResizeObserver
|
|
|
|
|
ResizeObserverEntry
|
|
|
|
|
ResizeObserverSize
|
|
|
|
|
Response
|
|
|
|
|
SVGAElement
|
2025-02-21 13:22:15 +01:00
|
|
|
SVGAnimatedEnumeration
|
2024-06-28 14:57:42 +02:00
|
|
|
SVGAnimatedLength
|
|
|
|
|
SVGAnimatedNumber
|
|
|
|
|
SVGAnimatedRect
|
|
|
|
|
SVGAnimatedString
|
|
|
|
|
SVGAnimatedTransformList
|
2025-06-02 18:39:20 +02:00
|
|
|
SVGAnimationElement
|
2024-06-28 14:57:42 +02:00
|
|
|
SVGCircleElement
|
|
|
|
|
SVGClipPathElement
|
|
|
|
|
SVGDefsElement
|
|
|
|
|
SVGDescElement
|
|
|
|
|
SVGElement
|
|
|
|
|
SVGEllipseElement
|
2025-07-04 20:55:08 +02:00
|
|
|
SVGFEBlendElement
|
2025-07-06 21:48:55 +02:00
|
|
|
SVGFEFloodElement
|
2025-07-04 21:08:28 +02:00
|
|
|
SVGFEGaussianBlurElement
|
2025-08-06 22:52:29 +01:00
|
|
|
SVGFEImageElement
|
2025-08-06 16:29:28 +02:00
|
|
|
SVGFEMergeElement
|
|
|
|
|
SVGFEMergeNodeElement
|
2025-08-06 13:53:50 +02:00
|
|
|
SVGFEOffsetElement
|
2025-02-21 13:22:48 +01:00
|
|
|
SVGFilterElement
|
2024-06-28 14:57:42 +02:00
|
|
|
SVGForeignObjectElement
|
2024-08-16 16:30:06 +01:00
|
|
|
SVGGElement
|
2024-06-28 14:57:42 +02:00
|
|
|
SVGGeometryElement
|
|
|
|
|
SVGGradientElement
|
|
|
|
|
SVGGraphicsElement
|
2024-08-20 15:12:55 +01:00
|
|
|
SVGImageElement
|
2024-06-28 14:57:42 +02:00
|
|
|
SVGLength
|
|
|
|
|
SVGLineElement
|
|
|
|
|
SVGLinearGradientElement
|
|
|
|
|
SVGMaskElement
|
|
|
|
|
SVGMatrix
|
2024-08-16 17:27:32 +01:00
|
|
|
SVGMetadataElement
|
2024-06-28 14:57:42 +02:00
|
|
|
SVGPathElement
|
|
|
|
|
SVGPoint
|
|
|
|
|
SVGPolygonElement
|
|
|
|
|
SVGPolylineElement
|
|
|
|
|
SVGRadialGradientElement
|
|
|
|
|
SVGRect
|
|
|
|
|
SVGRectElement
|
|
|
|
|
SVGSVGElement
|
|
|
|
|
SVGScriptElement
|
|
|
|
|
SVGStopElement
|
|
|
|
|
SVGStyleElement
|
|
|
|
|
SVGSymbolElement
|
|
|
|
|
SVGTSpanElement
|
|
|
|
|
SVGTextContentElement
|
|
|
|
|
SVGTextElement
|
|
|
|
|
SVGTextPathElement
|
|
|
|
|
SVGTextPositioningElement
|
|
|
|
|
SVGTitleElement
|
|
|
|
|
SVGTransform
|
|
|
|
|
SVGTransformList
|
2025-08-07 01:27:01 +02:00
|
|
|
SVGUnitTypes
|
2024-06-28 14:57:42 +02:00
|
|
|
SVGUseElement
|
2025-07-12 14:26:50 +01:00
|
|
|
SVGViewElement
|
2024-06-28 14:57:42 +02:00
|
|
|
Screen
|
|
|
|
|
ScreenOrientation
|
2025-07-25 09:45:13 +02:00
|
|
|
ScriptProcessorNode
|
2024-11-26 15:43:02 +00:00
|
|
|
SecurityPolicyViolationEvent
|
2024-06-28 14:57:42 +02:00
|
|
|
Selection
|
2025-08-06 09:07:40 +02:00
|
|
|
Serial
|
|
|
|
|
SerialPort
|
2024-09-09 23:29:41 -06:00
|
|
|
ServiceWorker
|
2024-08-22 17:27:30 +01:00
|
|
|
ServiceWorkerContainer
|
2024-08-22 22:59:01 +01:00
|
|
|
ServiceWorkerRegistration
|
2024-06-28 14:57:42 +02:00
|
|
|
Set
|
|
|
|
|
ShadowRealm
|
|
|
|
|
ShadowRoot
|
|
|
|
|
SharedArrayBuffer
|
2025-05-02 12:06:41 -04:00
|
|
|
SharedWorker
|
2024-11-01 14:03:15 +01:00
|
|
|
SourceBuffer
|
|
|
|
|
SourceBufferList
|
2024-06-28 14:57:42 +02:00
|
|
|
StaticRange
|
2025-01-17 14:56:20 +00:00
|
|
|
StereoPannerNode
|
2024-06-28 14:57:42 +02:00
|
|
|
Storage
|
2024-12-23 22:45:19 +13:00
|
|
|
StorageEvent
|
2024-08-13 20:54:58 +01:00
|
|
|
StorageManager
|
2024-06-28 14:57:42 +02:00
|
|
|
String
|
2025-08-11 15:11:49 +01:00
|
|
|
StylePropertyMap
|
2025-08-11 14:28:57 +01:00
|
|
|
StylePropertyMapReadOnly
|
2024-06-28 14:57:42 +02:00
|
|
|
StyleSheet
|
|
|
|
|
StyleSheetList
|
|
|
|
|
SubmitEvent
|
|
|
|
|
SubtleCrypto
|
|
|
|
|
SuppressedError
|
|
|
|
|
Symbol
|
|
|
|
|
SyntaxError
|
|
|
|
|
Text
|
|
|
|
|
TextDecoder
|
|
|
|
|
TextEncoder
|
2025-02-05 19:51:33 +00:00
|
|
|
TextEncoderStream
|
2024-10-05 14:44:59 +01:00
|
|
|
TextEvent
|
2024-06-28 14:57:42 +02:00
|
|
|
TextMetrics
|
2024-06-09 10:32:20 +01:00
|
|
|
TextTrack
|
2024-09-19 19:41:57 +01:00
|
|
|
TextTrackCue
|
2024-09-20 23:06:51 +01:00
|
|
|
TextTrackCueList
|
2024-06-09 11:07:41 +01:00
|
|
|
TextTrackList
|
2024-06-28 14:57:42 +02:00
|
|
|
TimeRanges
|
|
|
|
|
ToggleEvent
|
|
|
|
|
TrackEvent
|
|
|
|
|
TransformStream
|
|
|
|
|
TransformStreamDefaultController
|
2024-12-22 15:12:13 -05:00
|
|
|
TransitionEvent
|
2024-06-28 14:57:42 +02:00
|
|
|
TreeWalker
|
2025-07-31 00:21:13 +02:00
|
|
|
TrustedHTML
|
2025-07-31 16:16:46 +02:00
|
|
|
TrustedScript
|
2025-07-31 17:08:30 +02:00
|
|
|
TrustedScriptURL
|
2025-07-31 02:03:29 +02:00
|
|
|
TrustedTypePolicy
|
2025-05-31 02:24:26 +02:00
|
|
|
TrustedTypePolicyFactory
|
2024-06-28 14:57:42 +02:00
|
|
|
TypeError
|
|
|
|
|
UIEvent
|
|
|
|
|
URIError
|
|
|
|
|
URL
|
2025-01-05 23:33:26 +13:00
|
|
|
URLPattern
|
2024-06-28 14:57:42 +02:00
|
|
|
URLSearchParams
|
|
|
|
|
Uint16Array
|
|
|
|
|
Uint32Array
|
|
|
|
|
Uint8Array
|
|
|
|
|
Uint8ClampedArray
|
|
|
|
|
UserActivation
|
2024-09-19 21:49:54 +01:00
|
|
|
VTTCue
|
2024-09-19 19:18:00 +01:00
|
|
|
VTTRegion
|
2024-06-28 14:57:42 +02:00
|
|
|
ValidityState
|
|
|
|
|
VideoTrack
|
|
|
|
|
VideoTrackList
|
2025-03-23 12:38:21 +01:00
|
|
|
ViewTransition
|
2024-06-28 14:57:42 +02:00
|
|
|
VisualViewport
|
|
|
|
|
WeakMap
|
|
|
|
|
WeakRef
|
|
|
|
|
WeakSet
|
2024-12-05 20:56:18 -07:00
|
|
|
WebGL2RenderingContext
|
2024-11-13 10:15:42 +01:00
|
|
|
WebGLActiveInfo
|
2024-11-13 09:35:57 +01:00
|
|
|
WebGLBuffer
|
2024-06-28 14:57:42 +02:00
|
|
|
WebGLContextEvent
|
2024-11-13 09:46:25 +01:00
|
|
|
WebGLFramebuffer
|
2024-11-13 09:31:46 +01:00
|
|
|
WebGLObject
|
2024-11-13 09:59:10 +01:00
|
|
|
WebGLProgram
|
2024-12-05 17:53:50 -07:00
|
|
|
WebGLQuery
|
2024-11-13 10:03:53 +01:00
|
|
|
WebGLRenderbuffer
|
2024-06-28 14:57:42 +02:00
|
|
|
WebGLRenderingContext
|
2024-12-05 19:12:40 -07:00
|
|
|
WebGLSampler
|
2024-11-13 10:06:07 +01:00
|
|
|
WebGLShader
|
2024-11-13 10:18:51 +01:00
|
|
|
WebGLShaderPrecisionFormat
|
2024-12-05 19:18:40 -07:00
|
|
|
WebGLSync
|
2024-11-13 10:08:30 +01:00
|
|
|
WebGLTexture
|
2024-12-05 19:23:19 -07:00
|
|
|
WebGLTransformFeedback
|
2024-11-13 10:11:08 +01:00
|
|
|
WebGLUniformLocation
|
2024-12-05 19:25:39 -07:00
|
|
|
WebGLVertexArrayObject
|
2024-06-28 14:57:42 +02:00
|
|
|
WebKitCSSMatrix
|
|
|
|
|
WebSocket
|
|
|
|
|
WheelEvent
|
|
|
|
|
Window
|
|
|
|
|
Worker
|
|
|
|
|
WritableStream
|
|
|
|
|
WritableStreamDefaultController
|
|
|
|
|
WritableStreamDefaultWriter
|
|
|
|
|
XMLDocument
|
|
|
|
|
XMLHttpRequest
|
|
|
|
|
XMLHttpRequestEventTarget
|
|
|
|
|
XMLHttpRequestUpload
|
|
|
|
|
XMLSerializer
|
2024-09-14 21:16:46 -06:00
|
|
|
__finishTest
|
2024-06-28 14:57:42 +02:00
|
|
|
__preventMultipleTestFunctions
|
|
|
|
|
animationFrame
|
|
|
|
|
asyncTest
|
2024-10-14 22:25:24 -07:00
|
|
|
httpTestServer
|
2024-06-28 14:57:42 +02:00
|
|
|
printElement
|
|
|
|
|
println
|
|
|
|
|
promiseTest
|
2024-10-04 16:11:00 -06:00
|
|
|
removeTestErrorHandler
|
2024-09-14 21:16:46 -06:00
|
|
|
spoofCurrentURL
|
2024-06-28 14:57:42 +02:00
|
|
|
test
|
|
|
|
|
timeout
|
|
|
|
|
webkitURL
|