ladybird/Libraries/LibWeb/HTML
sideshowbarker e61a91c017 LibWeb: Keep session history coherent when navigations jump the queue
Problem: A document could drop a load if it ran a stream of synchronous
same-document history navigations (say, a pushState flood) while it was
concurrently loaded again. The load never finished — so on sanitizer/
slow builds, this had been intermittently taking down unrelated tests in
CI — since test-web reuses one WebContent process, and the next test’s
load can arrive while the previous document’s history work is still
draining. A synchronous commit also claimed a session history step it
never retired — so claimed steps piled up without bound.

Cause: A sync same-document navigation committed immediately and could
jump the session-history-traversal queue while a queued apply-history-
step — such as a cross-document load — was still waiting behind it. The
queued run read the active session-history entry after the sync
navigation had installed it, but before its step number was assigned —
then judged itself stale against that still-pending step, and was
discarded. The shared step numbering was fragile under the same nesting:
A number computed from the current step alone could collide with an in-
flight one — and a stale run that completed later could write its own
step back over a newer one. 394312ab5a stopped the crash this used to
cause, but the races remained.

Fix: Treat a queued push whose displayed entry’s step is still pending
as live rather than stale — so the concurrent load isn’t dropped. Number
apply-history-step runs, and let a run commit its target step only if no
newer run has committed one — so a stale run can’t move the current step
backwards. Claim each new step past every claimed-but-uncommitted step —
rather than from the current step alone, and keep clearing the forward
session history from removing those entries. And retire the step a sync
commit claims, since it applies in the same task, and nothing else will.

See https://github.com/LadybirdBrowser/ladybird/issues/10028
2026-06-17 12:25:53 +02:00
..
Canvas LibGfx+LibWeb: Paint 2D canvas via record-and-replay 2026-06-13 20:41:03 +02:00
CrossOrigin LibWeb: Skip COOP access reporting for inactive documents 2026-06-08 01:04:08 +02:00
CustomElements Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
EventLoop Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
Parser LibWeb: Do not refer to removed C++ DAFSA code generator 2026-06-05 20:23:24 +02:00
Scripting LibURL+LibWeb+LibWebView: Move internal URLs to their own header 2026-06-10 20:27:36 +02:00
SyntaxHighlighter LibSyntax+LibJS+LibWeb+LibWebView: Remove unused syntax highlighter code 2026-06-06 18:42:18 +02:00
AbstractWorker.cpp Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
AbstractWorker.h Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
AbstractWorker.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
ActivateTab.h Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
AnimatedDecodedImageData.cpp LibWeb: Let image paint callers own clipping 2026-06-06 13:23:21 +01:00
AnimatedDecodedImageData.h LibWeb: Let image paint callers own clipping 2026-06-06 13:23:21 +01:00
AnimationFrameCallbackDriver.cpp LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
AnimationFrameCallbackDriver.h LibWeb: Enable EXPLICIT_SYMBOL_EXPORT 2025-08-23 16:04:36 -06:00
AnimationFrameProvider.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
AttributeNames.cpp Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
AttributeNames.h Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
AudioPlayState.h Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
AudioTrack.cpp LibWeb: Pass the media element as an argument to task steps 2026-06-11 05:49:14 -05:00
AudioTrack.h LibWeb: Set AudioTrack and VideoTrack fields according to spec 2025-10-27 17:28:49 -07:00
AudioTrack.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
AudioTrackList.cpp LibWeb: Always set media track enabled state 2026-05-27 19:47:22 -05:00
AudioTrackList.h LibWeb: Implement appending and demuxing WebM MSE segments 2026-04-01 02:54:22 -05:00
AudioTrackList.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
AutocompleteElement.cpp LibWeb: Avoid invoking Trusted Types where avoidable 2025-11-06 11:43:06 -05:00
AutocompleteElement.h LibWeb: Avoid invoking Trusted Types where avoidable 2025-11-06 11:43:06 -05:00
BarProp.cpp LibWeb: Handle BarProp without a top-level context 2026-06-08 01:04:08 +02:00
BarProp.h Meta: Enforce newlines around namespaces 2025-05-14 02:01:59 -06:00
BarProp.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
BeforeUnloadEvent.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
BeforeUnloadEvent.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
BeforeUnloadEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
BitmapDecodedImageData.cpp LibWeb: Simplify BitmapDecodedImageData 2026-06-16 09:26:15 +02:00
BitmapDecodedImageData.h LibWeb: Simplify BitmapDecodedImageData 2026-06-16 09:26:15 +02:00
BroadcastChannel.cpp Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
BroadcastChannel.h LibWeb: Implement cross process BroadcastChannel delivery 2026-04-14 18:43:28 +02:00
BroadcastChannel.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
BroadcastChannelMessage.cpp LibWeb: Implement cross process BroadcastChannel delivery 2026-04-14 18:43:28 +02:00
BroadcastChannelMessage.h LibWeb: Implement cross process BroadcastChannel delivery 2026-04-14 18:43:28 +02:00
BrowsingContext.cpp LibWeb: Connect iframe referrerpolicy to ancestorOrigins 2026-06-11 14:25:27 +01:00
BrowsingContext.h LibWeb: Reuse initial about:blank window for first same-origin load 2026-05-22 18:17:58 +02:00
BrowsingContextGroup.cpp Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
BrowsingContextGroup.h LibWeb: Remove some uneeded navigation error propogation 2026-04-01 04:41:11 +02:00
CanvasGradient.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
CanvasGradient.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
CanvasGradient.idl Meta: Disallow links to single-page HTML spec 2025-02-05 16:04:50 -07:00
CanvasPattern.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
CanvasPattern.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
CanvasPattern.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
CanvasRenderingContext2D.cpp LibGfx: Stop caching Skia images during canvas playback 2026-06-16 00:38:30 +02:00
CanvasRenderingContext2D.h LibGfx+LibWeb: Paint 2D canvas via record-and-replay 2026-06-13 20:41:03 +02:00
CanvasRenderingContext2D.idl LibWeb: Generate canvas settings from IDL bindings 2026-05-09 10:49:49 +02:00
CanvasRenderingContext2DSettings.idl LibWeb: Generate canvas settings from IDL bindings 2026-05-09 10:49:49 +02:00
CloseEvent.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
CloseEvent.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
CloseEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
CloseWatcher.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
CloseWatcher.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
CloseWatcher.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
CloseWatcherManager.cpp LibGC: Default-construct RootVector from the global heap 2026-05-20 20:37:55 +02:00
CloseWatcherManager.h LibWeb: Give IDL exposed PlatformObjects an InterfaceName 2026-02-14 20:22:40 +01:00
ColorPickerUpdateState.h Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
CommandEvent.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
CommandEvent.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
CommandEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
CORSSettingAttribute.cpp Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
CORSSettingAttribute.h Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
DataTransfer.cpp LibWeb: Avoid stale DataTransferItem access after clearing data 2026-06-08 13:40:22 +02:00
DataTransfer.h Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
DataTransfer.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
DataTransferItem.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
DataTransferItem.h LibWeb: Implement DataTransferItemList.remove() 2025-09-12 12:30:33 +02:00
DataTransferItem.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
DataTransferItemList.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
DataTransferItemList.h LibWeb: Implement DataTransferItemList.clear() 2025-09-12 12:30:33 +02:00
DataTransferItemList.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
Dates.cpp LibWeb/HTML: Ensure the year of month and week values is greater than 0 2025-08-14 11:05:28 -04:00
Dates.h LibWeb: Enable EXPLICIT_SYMBOL_EXPORT 2025-08-23 16:04:36 -06:00
DecodedImageData.cpp Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
DecodedImageData.h LibWeb: Track CORS-cross-origin image data for canvas tainting 2026-06-11 17:01:48 +02:00
DedicatedWorkerGlobalScope.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
DedicatedWorkerGlobalScope.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
DedicatedWorkerGlobalScope.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
DocumentReadyState.h Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
DocumentState.cpp LibWeb: Make SessionHistoryEntry and DocumentState ref-counted 2026-04-03 14:20:09 +02:00
DocumentState.h LibWeb: Let newer navigations win history races 2026-06-16 00:00:38 +02:00
DOMParser.cpp LibWeb: Port a bunch of GC::Root to GC::Ref / GC::Ptr 2026-05-26 21:43:55 +02:00
DOMParser.h LibWeb: Port a bunch of GC::Root to GC::Ref / GC::Ptr 2026-05-26 21:43:55 +02:00
DOMParser.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
DOMStringList.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
DOMStringList.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
DOMStringList.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
DOMStringMap.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
DOMStringMap.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
DOMStringMap.idl Meta: Disallow links to single-page HTML spec 2025-02-05 16:04:50 -07:00
DragDataStore.cpp Everywhere: Avoid large rebuilds when editing (Immutable)Bitmap headers 2025-11-28 18:32:48 +01:00
DragDataStore.h Everywhere: Avoid large rebuilds when editing (Immutable)Bitmap headers 2025-11-28 18:32:48 +01:00
DragEvent.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
DragEvent.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
DragEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
ElementInternals.cpp LibWeb: Invalidate style when form control validity changes 2026-06-08 19:28:37 +02:00
ElementInternals.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
ElementInternals.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
EmbedderPolicy.cpp LibWeb: Make PolicyContainer GC allocated 2025-02-21 12:43:48 +00:00
EmbedderPolicy.h LibWeb: Reorganize EmbedderPolicy to shrink the size by 8 bytes 2025-05-18 17:50:05 -06:00
ErrorEvent.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
ErrorEvent.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
ErrorEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
ErrorInformation.cpp LibWeb: Use VM helpers for execution context access 2026-04-13 18:29:43 +02:00
ErrorInformation.h LibWeb/HTML: Extract ErrorInformation struct into its own files 2025-11-30 11:47:10 +01:00
EventHandler.cpp LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
EventHandler.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
EventNames.cpp Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
EventNames.h Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
EventSource.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
EventSource.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
EventSource.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
External.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
External.h LibWeb: Implement External interface 2026-01-22 14:56:46 +01:00
External.idl LibWeb: Implement External interface 2026-01-22 14:56:46 +01:00
FileFilter.cpp Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
FileFilter.h LibWeb: Enable EXPLICIT_SYMBOL_EXPORT 2025-08-23 16:04:36 -06:00
Focus.cpp LibWeb: Handle blurring nodes without a browsing context 2026-06-08 01:04:08 +02:00
Focus.h LibWeb: Select contents of <input> when tabbing through fields 2026-02-11 11:17:27 +01:00
FormAssociatedElement.cpp LibWeb: Invalidate style when form control validity changes 2026-06-08 19:28:37 +02:00
FormAssociatedElement.h LibWeb: Move textarea Home and End by line 2026-05-20 12:26:20 +02:00
FormControlInfrastructure.cpp LibWeb: Remove various case of unneeded use of GC::Root 2026-05-29 17:21:17 +02:00
FormControlInfrastructure.h LibWeb: Add missing GC visits for XHR::FormDataEntry 2025-12-26 19:48:46 +01:00
FormDataEvent.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
FormDataEvent.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
FormDataEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
GlobalEventHandlers.cpp Meta: Enforce newlines around namespaces 2025-05-14 02:01:59 -06:00
GlobalEventHandlers.h LibWeb: Add onanimation* event handler IDL attributes 2026-01-13 10:09:22 +01:00
HashChangeEvent.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
HashChangeEvent.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
HashChangeEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
History.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
History.h LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
History.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
HistoryHandlingBehavior.h Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
HTMLAllCollection.cpp LibGC: Default-construct RootVector from the global heap 2026-05-20 20:37:55 +02:00
HTMLAllCollection.h LibGC: Rename MarkedVector => RootVector 2024-12-26 19:10:44 +01:00
HTMLAllCollection.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLAnchorElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLAnchorElement.h LibWeb: Reject non-rendered elements as focus targets 2026-05-21 08:56:05 +02:00
HTMLAnchorElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLAreaElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLAreaElement.h LibWeb: Move hyperlink navigation methods to DOM::Element 2026-01-13 10:05:40 +01:00
HTMLAreaElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLAudioElement.cpp LibWeb: Make layout nodes refcounted 2026-06-07 20:52:49 +02:00
HTMLAudioElement.h LibWeb: Make layout nodes refcounted 2026-06-07 20:52:49 +02:00
HTMLAudioElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLBaseElement.cpp LibWeb: Implement chardetng-based encoding detection for HTML parsing 2026-05-23 11:57:33 +02:00
HTMLBaseElement.h LibWeb: Only invalidate style for relevant links on navigation 2026-05-08 12:30:29 +01:00
HTMLBaseElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLBodyElement.cpp LibWeb: Ignore invalid body background hints 2026-06-08 01:04:08 +02:00
HTMLBodyElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLBodyElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLBRElement.cpp LibWeb: Make layout nodes refcounted 2026-06-07 20:52:49 +02:00
HTMLBRElement.h LibWeb: Make layout nodes refcounted 2026-06-07 20:52:49 +02:00
HTMLBRElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLButtonElement.cpp LibWeb/HTML: Correct button activation steps to use element not this 2026-06-11 19:07:27 +02:00
HTMLButtonElement.h LibWeb: Make every HTMLElement potentially form-associated 2026-03-25 13:18:15 +00:00
HTMLButtonElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLCanvasElement.cpp LibWeb: Make layout nodes refcounted 2026-06-07 20:52:49 +02:00
HTMLCanvasElement.h LibWeb: Make layout nodes refcounted 2026-06-07 20:52:49 +02:00
HTMLCanvasElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLDataElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLDataElement.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
HTMLDataElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLDataListElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLDataListElement.h LibWeb: Enable EXPLICIT_SYMBOL_EXPORT 2025-08-23 16:04:36 -06:00
HTMLDataListElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLDetailsElement.cpp LibWeb: Ensure that shadow roots have hosts before appending children 2026-06-05 18:08:21 +09:00
HTMLDetailsElement.h LibWeb/HTML: Always provide ChildrenChangedMetadata to children changed 2026-03-19 09:46:54 +01:00
HTMLDetailsElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLDialogElement.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
HTMLDialogElement.h LibWeb: Reject non-rendered elements as focus targets 2026-05-21 08:56:05 +02:00
HTMLDialogElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLDirectoryElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLDirectoryElement.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
HTMLDirectoryElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLDivElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLDivElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLDivElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLDListElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLDListElement.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
HTMLDListElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLDocument.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLDocument.h Everywhere: Use URL::about_XXX factory functions 2025-02-15 17:05:55 +00:00
HTMLDocument.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLElement.cpp LibWeb: Propagate outerText replacement exceptions 2026-06-08 01:04:08 +02:00
HTMLElement.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
HTMLElement.idl LibWeb: Rename HTMLOrSVGElement to HTMLOrSVGOrMathMLElement 2026-05-06 17:42:36 +01:00
HTMLEmbedElement.cpp LibWeb: Map embedded content align to vertical-align 2026-05-26 09:35:16 +02:00
HTMLEmbedElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLEmbedElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLFieldSetElement.cpp LibWeb: Make layout nodes refcounted 2026-06-07 20:52:49 +02:00
HTMLFieldSetElement.h LibWeb: Make layout nodes refcounted 2026-06-07 20:52:49 +02:00
HTMLFieldSetElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLFontElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLFontElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLFontElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLFormControlsCollection.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
HTMLFormControlsCollection.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
HTMLFormControlsCollection.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLFormElement.cpp LibWebView: Keep browser history in the UI process 2026-06-14 17:38:44 +02:00
HTMLFormElement.h LibWeb: Override HTMLFormElement::is_supported_property_name() 2026-04-21 14:02:54 +01:00
HTMLFormElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLFrameElement.cpp LibWeb: Pass better information to node moving/removing steps 2026-04-22 14:05:49 +01:00
HTMLFrameElement.h LibWeb: Pass better information to node moving/removing steps 2026-04-22 14:05:49 +01:00
HTMLFrameElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLFrameSetElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLFrameSetElement.h Meta: Enforce newlines around namespaces 2025-05-14 02:01:59 -06:00
HTMLFrameSetElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLHeadElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLHeadElement.h Meta: Enforce newlines around namespaces 2025-05-14 02:01:59 -06:00
HTMLHeadElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLHeadingElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLHeadingElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLHeadingElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLHRElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLHRElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLHRElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLHtmlElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLHtmlElement.h LibWeb: Enable EXPLICIT_SYMBOL_EXPORT 2025-08-23 16:04:36 -06:00
HTMLHtmlElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLHyperlinkElementUtils.cpp LibWeb: Move hyperlink style invalidation into a helper 2026-04-29 15:47:23 +02:00
HTMLHyperlinkElementUtils.h LibWeb: Move hyperlink navigation methods to DOM::Element 2026-01-13 10:05:40 +01:00
HTMLHyperlinkElementUtils.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
HTMLIFrameElement.cpp LibWeb/HTML: Add resource timing URL to iframes 2026-06-11 19:07:27 +02:00
HTMLIFrameElement.h LibWeb/HTML: Add resource timing URL to iframes 2026-06-11 19:07:27 +02:00
HTMLIFrameElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLImageElement.cpp LibWeb: Hoist overloaded ImageProvider methods to base class 2026-06-16 09:26:15 +02:00
HTMLImageElement.h LibWeb: Hoist overloaded ImageProvider methods to base class 2026-06-16 09:26:15 +02:00
HTMLImageElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLInputElement.cpp LibWeb: Hoist overloaded ImageProvider methods to base class 2026-06-16 09:26:15 +02:00
HTMLInputElement.h LibWeb: Hoist overloaded ImageProvider methods to base class 2026-06-16 09:26:15 +02:00
HTMLInputElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLLabelElement.cpp LibWeb: Allow HTMLLabelElement to delegate activation behavior 2026-05-26 09:29:13 +02:00
HTMLLabelElement.h LibWeb: Separate the active element and the element being activated 2026-03-17 04:01:29 -05:00
HTMLLabelElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLLegendElement.cpp LibWeb: Make layout nodes refcounted 2026-06-07 20:52:49 +02:00
HTMLLegendElement.h LibWeb: Make layout nodes refcounted 2026-06-07 20:52:49 +02:00
HTMLLegendElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLLIElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLLIElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLLIElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLLinkElement.cpp LibWeb: Transfer load delayers when elements are adopted 2026-06-11 00:34:12 +02:00
HTMLLinkElement.h LibWeb: Transfer load delayers when elements are adopted 2026-06-11 00:34:12 +02:00
HTMLLinkElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLMapElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLMapElement.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
HTMLMapElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLMarqueeElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLMarqueeElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLMarqueeElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLMediaElement.cpp LibMedia+LibWeb: End media element playback based on the pipeline EOS 2026-06-11 05:49:14 -05:00
HTMLMediaElement.h LibWeb: Pass the media element as an argument to task steps 2026-06-11 05:49:14 -05:00
HTMLMediaElement.idl LibMedia+LibWeb: Implement HTMLMediaElement.getStartDate() 2026-05-05 14:45:00 -05:00
HTMLMenuElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLMenuElement.h LibWeb: Add specialized fast_is for lists 2025-06-16 12:44:58 +01:00
HTMLMenuElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLMetaElement.cpp LibWeb: Skip meta http-equiv processing outside a document tree 2026-06-13 10:51:37 +12:00
HTMLMetaElement.h LibWeb: Pass better information to node moving/removing steps 2026-04-22 14:05:49 +01:00
HTMLMetaElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLMeterElement.cpp LibWeb: Forward non-synthetic pseudo-elt accesses to relevant element 2026-05-21 14:26:22 +01:00
HTMLMeterElement.h LibWeb: Avoid invoking Trusted Types where avoidable 2025-11-06 11:43:06 -05:00
HTMLMeterElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLModElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLModElement.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
HTMLModElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLObjectElement.cpp LibWeb: Hoist overloaded ImageProvider methods to base class 2026-06-16 09:26:15 +02:00
HTMLObjectElement.h LibWeb: Hoist overloaded ImageProvider methods to base class 2026-06-16 09:26:15 +02:00
HTMLObjectElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLOListElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLOListElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLOListElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLOptGroupElement.cpp LibWeb: Pass better information to node moving/removing steps 2026-04-22 14:05:49 +01:00
HTMLOptGroupElement.h LibWeb: Pass better information to node moving/removing steps 2026-04-22 14:05:49 +01:00
HTMLOptGroupElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLOptionElement.cpp LibWeb/HTML: Make disabled select disable its option/optgroup children 2026-06-11 19:07:27 +02:00
HTMLOptionElement.h LibWeb/HTML: Make disabled select disable its option/optgroup children 2026-06-11 19:07:27 +02:00
HTMLOptionElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLOptionsCollection.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
HTMLOptionsCollection.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
HTMLOptionsCollection.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLOrSVGOrMathMLElement.cpp LibWeb: Rename HTMLOrSVGElement to HTMLOrSVGOrMathMLElement 2026-05-06 17:42:36 +01:00
HTMLOrSVGOrMathMLElement.h LibWeb: Rename HTMLOrSVGElement to HTMLOrSVGOrMathMLElement 2026-05-06 17:42:36 +01:00
HTMLOrSVGOrMathMLElement.idl LibWeb: Rename HTMLOrSVGElement to HTMLOrSVGOrMathMLElement 2026-05-06 17:42:36 +01:00
HTMLOutputElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLOutputElement.h LibWeb: Make every HTMLElement potentially form-associated 2026-03-25 13:18:15 +00:00
HTMLOutputElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLParagraphElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLParagraphElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLParagraphElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLParamElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLParamElement.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
HTMLParamElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLPictureElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLPictureElement.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
HTMLPictureElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLPreElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLPreElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLPreElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLProgressElement.cpp LibWeb: Forward non-synthetic pseudo-elt accesses to relevant element 2026-05-21 14:26:22 +01:00
HTMLProgressElement.h LibWeb: Avoid invoking Trusted Types where avoidable 2025-11-06 11:43:06 -05:00
HTMLProgressElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLQuoteElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLQuoteElement.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
HTMLQuoteElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLScriptElement.cpp LibWeb/HTML: Don't prepare_script() when src attribute is removed 2026-06-11 19:07:27 +02:00
HTMLScriptElement.h Everywhere: Make use of Badge with multiple or derived types 2026-06-11 21:55:56 +02:00
HTMLScriptElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLSelectedContentElement.cpp LibWeb: Pass better information to node moving/removing steps 2026-04-22 14:05:49 +01:00
HTMLSelectedContentElement.h LibWeb: Pass better information to node moving/removing steps 2026-04-22 14:05:49 +01:00
HTMLSelectedContentElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLSelectElement.cpp LibWeb/HTML: Make disabled select disable its option/optgroup children 2026-06-11 19:07:27 +02:00
HTMLSelectElement.h LibWeb/HTML: Make disabled select disable its option/optgroup children 2026-06-11 19:07:27 +02:00
HTMLSelectElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLSlotElement.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
HTMLSlotElement.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
HTMLSlotElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLSourceElement.cpp LibWeb: Re-evaluate picture source set on source mutations 2026-04-26 17:49:19 +02:00
HTMLSourceElement.h LibWeb: Re-evaluate picture source set on source mutations 2026-04-26 17:49:19 +02:00
HTMLSourceElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLSpanElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLSpanElement.h Meta: Enforce newlines around namespaces 2025-05-14 02:01:59 -06:00
HTMLSpanElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLStyleElement.cpp LibWeb: Transfer load delayers when elements are adopted 2026-06-11 00:34:12 +02:00
HTMLStyleElement.h LibWeb: Transfer load delayers when elements are adopted 2026-06-11 00:34:12 +02:00
HTMLStyleElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLSummaryElement.cpp LibWeb: Reject non-rendered elements as focus targets 2026-05-21 08:56:05 +02:00
HTMLSummaryElement.h LibWeb: Give IDL exposed PlatformObjects an InterfaceName 2026-02-14 20:22:40 +01:00
HTMLTableCaptionElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLTableCaptionElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLTableCaptionElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLTableCellElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLTableCellElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLTableCellElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLTableColElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLTableColElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLTableColElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLTableElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLTableElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLTableElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLTableRowElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLTableRowElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLTableRowElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLTableSectionElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLTableSectionElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLTableSectionElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLTemplateElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLTemplateElement.h Utilities: Add dump-html-tree 2026-05-17 15:35:56 +02:00
HTMLTemplateElement.idl LibWeb: Align declarative shadow root parsing 2026-05-17 15:35:56 +02:00
HTMLTextAreaElement.cpp LibWeb: Invalidate style when form control validity changes 2026-06-08 19:28:37 +02:00
HTMLTextAreaElement.h LibWeb: Make layout nodes refcounted 2026-06-07 20:52:49 +02:00
HTMLTextAreaElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLTimeElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLTimeElement.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
HTMLTimeElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLTitleElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLTitleElement.h LibWeb/HTML: Always provide ChildrenChangedMetadata to children changed 2026-03-19 09:46:54 +01:00
HTMLTitleElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLTrackElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLTrackElement.h LibWeb: Do not spin the event loop awaiting text track state changes 2025-06-12 12:25:23 -04:00
HTMLTrackElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLUListElement.cpp LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLUListElement.h LibWeb: Route presentational hints through the CSS cascade 2026-04-30 19:50:28 +01:00
HTMLUListElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLUnknownElement.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
HTMLUnknownElement.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
HTMLUnknownElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
HTMLVideoElement.cpp LibWeb: Pass the media element as an argument to task steps 2026-06-11 05:49:14 -05:00
HTMLVideoElement.h LibWeb: Transfer load delayers when elements are adopted 2026-06-11 00:34:12 +02:00
HTMLVideoElement.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
ImageBitmap.cpp LibWeb: Keep transferred ImageBitmap data stable 2026-05-24 10:13:23 +02:00
ImageBitmap.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
ImageBitmap.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
ImageData.cpp LibWeb: Port a bunch of GC::Root to GC::Ref / GC::Ptr 2026-05-26 21:43:55 +02:00
ImageData.h LibWeb: Port a bunch of GC::Root to GC::Ref / GC::Ptr 2026-05-26 21:43:55 +02:00
ImageData.idl LibWeb: Split PredefinedColorSpace into its own IDL file 2026-05-09 10:49:49 +02:00
ImageRequest.cpp LibWeb: Stream animated image frames on demand 2026-02-13 18:34:24 +01:00
ImageRequest.h LibWeb/HTML: Make HTMLImageRequests currentURL a String 2025-03-04 16:24:19 -05:00
InitialInsertion.h LibWeb: Avoid including Navigable.h in headers 2025-10-20 10:16:55 +01:00
LazyLoadingElement.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
ListOfAvailableImages.cpp LibWeb: Bound per-document decoded image caches 2026-05-17 00:29:18 +02:00
ListOfAvailableImages.h LibWeb: Bound per-document decoded image caches 2026-05-17 00:29:18 +02:00
Location.cpp LibWeb/HTML: Account for replaced cross-origin descriptors 2026-05-30 22:55:44 +02:00
Location.h LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
Location.idl LibWeb/HTML: Don't log FIXME messages for location.ancestorOrigins 2025-05-25 08:45:30 -04:00
MediaControls.cpp LibWeb: Pin the media controls' time progress to the scrub position 2026-06-11 05:49:14 -05:00
MediaControls.css LibWeb: Make buffered ranges visible on the media controls' timeline 2026-05-28 10:30:20 -05:00
MediaControls.h LibWeb: Pin the media controls' time progress to the scrub position 2026-06-11 05:49:14 -05:00
MediaControls.html LibWeb: Move media controls' timeline fill to an inner div 2026-05-28 10:30:20 -05:00
MediaError.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
MediaError.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
MediaError.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
MediaTrackBase.cpp LibMedia+LibWeb: Align Media::Track more to the web spec 2026-04-01 02:54:22 -05:00
MediaTrackBase.h LibWeb: Implement appending and demuxing WebM MSE segments 2026-04-01 02:54:22 -05:00
MessageChannel.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
MessageChannel.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
MessageChannel.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
MessageEvent.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
MessageEvent.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
MessageEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
MessagePort.cpp LibIPC: Adopt Mach OOL payloads on receive 2026-06-13 00:27:57 +01:00
MessagePort.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
MessagePort.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
MimeType.cpp Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
MimeType.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
MimeType.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
MimeTypeArray.cpp Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
MimeTypeArray.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
MimeTypeArray.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
Navigable.cpp LibWeb: Keep session history coherent when navigations jump the queue 2026-06-17 12:25:53 +02:00
Navigable.h LibWeb: Preserve live iframe navigations during history 2026-06-17 02:17:34 +02:00
NavigableContainer.cpp LibWeb: Preserve live iframe navigations during history 2026-06-17 02:17:34 +02:00
NavigableContainer.h LibWeb: Remove some uneeded navigation error propogation 2026-04-01 04:41:11 +02:00
NavigateEvent.cpp LibWebView: Keep browser history in the UI process 2026-06-14 17:38:44 +02:00
NavigateEvent.h LibWeb: Run same-document commit handlers during entry update 2026-06-06 11:34:50 +02:00
NavigateEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
Navigation.cpp LibWeb: Let newer navigations win history races 2026-06-16 00:00:38 +02:00
Navigation.h LibWebView: Keep browser history in the UI process 2026-06-14 17:38:44 +02:00
Navigation.idl LibWeb/Bindings: Remove GenerateAsRequired handling from IDL generator 2026-05-26 21:43:57 +02:00
NavigationCurrentEntryChangeEvent.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
NavigationCurrentEntryChangeEvent.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
NavigationCurrentEntryChangeEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
NavigationDestination.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
NavigationDestination.h LibWeb: Use forward-declarations of structured serialized types 2025-07-18 10:09:02 -04:00
NavigationDestination.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
NavigationHistoryEntry.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
NavigationHistoryEntry.h LibWeb: Make SessionHistoryEntry and DocumentState ref-counted 2026-04-03 14:20:09 +02:00
NavigationHistoryEntry.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
NavigationObserver.cpp LibWeb: Remove spin_until from create_navigation_params_by_fetching 2025-11-07 04:08:30 +01:00
NavigationObserver.h LibWeb: Give IDL exposed PlatformObjects an InterfaceName 2026-02-14 20:22:40 +01:00
NavigationParams.cpp LibWeb: Remove spin_until from create_navigation_params_by_fetching 2025-11-07 04:08:30 +01:00
NavigationParams.h LibWeb: Connect iframe referrerpolicy to ancestorOrigins 2026-06-11 14:25:27 +01:00
NavigationTransition.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
NavigationTransition.h LibWeb/Bindings: Generate enum bindings in their owning IDL headers 2026-05-09 10:49:49 +02:00
NavigationTransition.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
NavigationType.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
Navigator.cpp LibWeb: Add basics for the Permissions API 2026-05-11 21:01:01 +02:00
Navigator.h LibWeb: Add basics for the Permissions API 2026-05-11 21:01:01 +02:00
Navigator.idl LibWeb: Add basics for the Permissions API 2026-05-11 21:01:01 +02:00
NavigatorBeacon.cpp LibWeb/Bindings: Generate buffer typedefs as variants 2026-05-30 11:22:08 +02:00
NavigatorBeacon.h LibWeb+IDLGenerators: Support nullable union types 2026-03-25 13:18:15 +00:00
NavigatorBeacon.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
NavigatorConcurrentHardware.cpp Everywhere: Remove LibCore/System.h includes from header files 2025-12-04 15:40:46 +00:00
NavigatorConcurrentHardware.h Everywhere: Remove LibCore/System.h includes from header files 2025-12-04 15:40:46 +00:00
NavigatorConcurrentHardware.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
NavigatorDeviceMemory.cpp Everywhere: Remove LibCore/System.h includes from header files 2025-12-04 15:40:46 +00:00
NavigatorDeviceMemory.h Everywhere: Remove LibCore/System.h includes from header files 2025-12-04 15:40:46 +00:00
NavigatorDeviceMemory.idl Meta: Ensure that idl files link to draft specs 2026-03-25 16:02:04 +00:00
NavigatorID.cpp LibWeb/HTML: Account for User-Agent not starting with "Mozilla/" 2025-11-27 07:20:32 -05:00
NavigatorID.h Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
NavigatorID.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
NavigatorLanguage.h LibWeb/HTML: Add FIXMEs to honor WebDriver BiDi emulated language 2025-12-01 11:07:16 +00:00
NavigatorLanguage.idl LibWeb: Convert trivial attributes to FrozenArray 2025-04-25 16:43:43 +02:00
NavigatorOnLine.h Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
NavigatorOnLine.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
Numbers.cpp LibJS+LibWeb: Port interned bytecode strings to UTF-16 2025-08-14 10:27:08 +02:00
Numbers.h LibWeb: Enable EXPLICIT_SYMBOL_EXPORT 2025-08-23 16:04:36 -06:00
OffscreenCanvas.cpp LibWeb: Remove unnecessary FIXMEs in canvas_font_computation_context 2026-05-31 14:09:51 +02:00
OffscreenCanvas.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
OffscreenCanvas.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
OffscreenCanvasRenderingContext2D.cpp LibGfx+LibWeb: Paint 2D canvas via record-and-replay 2026-06-13 20:41:03 +02:00
OffscreenCanvasRenderingContext2D.h LibGfx+LibWeb: Paint 2D canvas via record-and-replay 2026-06-13 20:41:03 +02:00
OffscreenCanvasRenderingContext2D.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
PageSwapEvent.idl LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
PageTransitionEvent.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
PageTransitionEvent.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
PageTransitionEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
PaintConfig.h LibWeb: Add a caret hit-test debug overlay 2026-05-30 13:50:48 +02:00
Path2D.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
Path2D.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
Path2D.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
Plugin.cpp Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
Plugin.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
Plugin.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
PluginArray.cpp Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
PluginArray.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
PluginArray.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
PolicyContainers.cpp LibWeb: Parse Referrer-Policy header when creating policy container 2026-01-12 13:07:14 +01:00
PolicyContainers.h LibWeb: Enforce Integrity Policy on Fetch requests 2025-08-14 13:37:38 +01:00
PopoverTargetAttributes.cpp LibWeb/HTML: Properly get the attr-associated element 2026-03-25 23:14:10 +01:00
PopoverTargetAttributes.h LibWeb/HTML: Rename popover "invoker" 2025-11-27 16:44:51 +00:00
PopoverTargetAttributes.idl LibWeb/HTML: Rename popover "invoker" 2025-11-27 16:44:51 +00:00
PopStateEvent.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
PopStateEvent.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
PopStateEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
POSTResource.cpp LibWeb: Add session history serialization support 2026-06-14 17:38:44 +02:00
POSTResource.h LibWeb: Add session history serialization support 2026-06-14 17:38:44 +02:00
PotentialCORSRequest.cpp LibWeb: Fix various typos 2025-01-30 15:00:16 +00:00
PotentialCORSRequest.h Everywhere: Change west consts caught by clang-format-21 to east consts 2025-08-29 18:18:55 +01:00
PredefinedColorSpace.idl LibWeb: Split PredefinedColorSpace into its own IDL file 2026-05-09 10:49:49 +02:00
PreloadEntry.cpp Revert "LibWeb: Have speculative HTML parser populate the preload map" 2026-04-30 04:55:31 +02:00
PreloadEntry.h Revert "LibWeb: Have speculative HTML parser populate the preload map" 2026-04-30 04:55:31 +02:00
PromiseRejectionEvent.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
PromiseRejectionEvent.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
PromiseRejectionEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
RadioNodeList.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
RadioNodeList.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
RadioNodeList.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
SandboxingFlagSet.cpp LibWeb/CSP: Implement the sandbox directive 2025-08-07 19:24:39 +02:00
SandboxingFlagSet.h LibWeb/CSP: Implement the sandbox directive 2025-08-07 19:24:39 +02:00
ScrollOptions.h LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
SelectedFile.cpp LibWeb+LibWebView+UI: Move SelectedFile factory to LibWebView 2026-05-20 21:09:22 +02:00
SelectedFile.h LibWeb+LibWebView+UI: Move SelectedFile factory to LibWebView 2026-05-20 21:09:22 +02:00
SelectItem.cpp LibWeb: Reduce SelectItemOption struct from 40 to 32 bytes 2024-11-11 17:06:20 +01:00
SelectItem.h LibWeb: Enable EXPLICIT_SYMBOL_EXPORT 2025-08-23 16:04:36 -06:00
SerializedPolicyContainer.cpp LibWeb: Introduce Content Security Policy policies and directives 2025-03-04 14:27:19 +01:00
SerializedPolicyContainer.h LibWeb: Introduce Content Security Policy policies and directives 2025-03-04 14:27:19 +01:00
SessionHistoryEntry.cpp LibWeb: Let newer navigations win history races 2026-06-16 00:00:38 +02:00
SessionHistoryEntry.h LibWeb: Let newer navigations win history races 2026-06-16 00:00:38 +02:00
SessionHistoryTraversalQueue.cpp LibWeb: Replace spin_until in apply_the_history_step with state machine 2026-03-31 09:47:59 +02:00
SessionHistoryTraversalQueue.h LibWeb: Replace spin_until in apply_the_history_step with state machine 2026-03-31 09:47:59 +02:00
SharedResourceRequest.cpp LibWeb: Simplify BitmapDecodedImageData 2026-06-16 09:26:15 +02:00
SharedResourceRequest.h LibWeb: Track CORS-cross-origin image data for canvas tainting 2026-06-11 17:01:48 +02:00
SharedWorker.cpp LibWebView+WebContent+WebWorker: Move worker ownership into LibWebView 2026-05-27 02:27:19 +01:00
SharedWorker.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
SharedWorker.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
SharedWorkerGlobalScope.cpp Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
SharedWorkerGlobalScope.h LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
SharedWorkerGlobalScope.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
SourceSet.cpp LibWeb: Use document LRC in normalize_source_densities 2026-03-31 10:06:18 +02:00
SourceSet.h LibWeb: Remove FooOrCalculated classes 2026-03-30 14:05:10 +01:00
SourceSnapshotParams.cpp LibWeb: Make PolicyContainer GC allocated 2025-02-21 12:43:48 +00:00
SourceSnapshotParams.h LibWeb: Make a bunch of CSP classes not realm associated 2025-04-28 12:41:28 +02:00
Storage.cpp LibWeb+LibDevTools: Report Web Storage changes 2026-06-11 16:08:33 +01:00
Storage.h LibWeb/HTML: Fire storage events to windows without a Storage 2026-03-16 13:55:07 +01:00
Storage.idl Meta: Disallow links to single-page HTML spec 2025-02-05 16:04:50 -07:00
StorageEvent.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
StorageEvent.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
StorageEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
StructuredSerialize.cpp LibJS: Isolate ArrayBuffer backing stores 2026-06-10 14:50:10 +02:00
StructuredSerialize.h LibWeb/HTML: Add unsigned big integer helpers to TransferData 2026-05-27 02:44:46 +01:00
StructuredSerializeTypes.h LibWeb: Use Bindings::InterfaceName for serializing types 2026-02-14 20:22:40 +01:00
SubmitEvent.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
SubmitEvent.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
SubmitEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
SupportedImageTypes.cpp LibGfx+LibWeb: Remove TIFF image decoding 2026-06-12 22:37:49 +02:00
SupportedImageTypes.h LibWeb: Share supported image MIME type list 2026-04-25 14:54:10 +02:00
TagNames.cpp Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
TagNames.h Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
TextMetrics.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
TextMetrics.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
TextMetrics.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
TextTrack.cpp LibWeb: Do not spin the event loop awaiting text track state changes 2025-06-12 12:25:23 -04:00
TextTrack.h LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
TextTrack.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
TextTrackCue.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
TextTrackCue.h LibGC: Rename MarkedVector => RootVector 2024-12-26 19:10:44 +01:00
TextTrackCue.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
TextTrackCueList.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
TextTrackCueList.h LibGC: Rename MarkedVector => RootVector 2024-12-26 19:10:44 +01:00
TextTrackCueList.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
TextTrackList.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
TextTrackList.h LibWeb: Implement appending and demuxing WebM MSE segments 2026-04-01 02:54:22 -05:00
TextTrackList.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
TextTrackObserver.cpp LibWeb: Do not spin the event loop awaiting text track state changes 2025-06-12 12:25:23 -04:00
TextTrackObserver.h LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
Timer.cpp LibWeb: Add Timer::set_interval() 2026-02-11 16:32:20 +00:00
Timer.h LibWeb: Add Timer::set_interval() 2026-02-11 16:32:20 +00:00
TimeRanges.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
TimeRanges.h LibWeb: Implement TimeRanges and HTMLMediaElement.seekable() 2025-02-18 10:45:32 -07:00
TimeRanges.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
ToggleEvent.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
ToggleEvent.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
ToggleEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
ToggleTaskTracker.h Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
TokenizedFeatures.cpp AK+Everywhere: Change StringView case conversions to return String 2025-04-07 17:44:38 +02:00
TokenizedFeatures.h Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
TrackEvent.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
TrackEvent.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
TrackEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
TraversableNavigable.cpp LibWeb: Keep session history coherent when navigations jump the queue 2026-06-17 12:25:53 +02:00
TraversableNavigable.h LibWeb: Keep session history coherent when navigations jump the queue 2026-06-17 12:25:53 +02:00
UniversalGlobalScope.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
UniversalGlobalScope.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
UniversalGlobalScope.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
UserActivation.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
UserActivation.h LibGC+Everywhere: Factor out a LibGC from LibJS 2024-11-15 14:49:20 +01:00
UserActivation.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
UserNavigationInvolvement.cpp LibWeb: Avoid including Navigable.h in headers 2025-10-20 10:16:55 +01:00
UserNavigationInvolvement.h LibWeb: Avoid including Navigable.h in headers 2025-10-20 10:16:55 +01:00
ValidityState.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
ValidityState.h LibWeb: Implement validity IDL attribute 2025-02-18 06:37:11 +00:00
ValidityState.idl LibWeb: Implement validity IDL attribute 2025-02-18 06:37:11 +00:00
VideoTrack.cpp LibWeb: Pass the media element as an argument to task steps 2026-06-11 05:49:14 -05:00
VideoTrack.h LibWeb: Set AudioTrack and VideoTrack fields according to spec 2025-10-27 17:28:49 -07:00
VideoTrack.idl Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
VideoTrackList.cpp LibWeb: Always set media track enabled state 2026-05-27 19:47:22 -05:00
VideoTrackList.h LibWeb: Update video elements' natural dimensions during playback 2026-04-21 19:11:24 -05:00
VideoTrackList.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
VisibilityState.h Everywhere: Hoist the Libraries folder to the top-level 2024-11-10 12:50:45 +01:00
WebViewHints.cpp LibWeb/HTML: Use available screen area to set up browsing context feats 2025-12-12 10:17:00 +00:00
WebViewHints.h LibWeb: Enable EXPLICIT_SYMBOL_EXPORT 2025-08-23 16:04:36 -06:00
Window.cpp LibWeb: Avoid idle callback churn in hidden documents 2026-06-08 01:56:11 +02:00
Window.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
Window.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
WindowDeprecated.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
WindowEventHandlers.cpp LibWeb: Implement the Gamepad API with SDL3 2025-09-01 21:10:47 +02:00
WindowEventHandlers.h LibWeb: Implement the Gamepad API with SDL3 2025-09-01 21:10:47 +02:00
WindowLocalStorage.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
WindowOrWorkerGlobalScope.cpp LibWeb: Simplify ImageProvider frame getters 2026-06-16 09:26:15 +02:00
WindowOrWorkerGlobalScope.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
WindowOrWorkerGlobalScope.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
WindowProxy.cpp LibGC: Default-construct RootVector from the global heap 2026-05-20 20:37:55 +02:00
WindowProxy.h LibWeb: Give IDL exposed PlatformObjects an InterfaceName 2026-02-14 20:22:40 +01:00
WindowSessionStorage.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
WindowType.h LibWeb: Avoid including Navigable.h in headers 2025-10-20 10:16:55 +01:00
Worker.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
Worker.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
Worker.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
WorkerAgentForward.h LibWebView+WebContent+WebWorker: Move worker ownership into LibWebView 2026-05-27 02:27:19 +01:00
WorkerAgentParent.cpp Meta: Enable exit-time destructor warnings for libraries 2026-06-04 19:20:49 +02:00
WorkerAgentParent.h LibWebView+WebContent+WebWorker: Move worker ownership into LibWebView 2026-05-27 02:27:19 +01:00
WorkerAgentTypes.cpp LibWebView+WebContent+WebWorker: Move worker ownership into LibWebView 2026-05-27 02:27:19 +01:00
WorkerAgentTypes.h LibWebView+WebContent+WebWorker: Move worker ownership into LibWebView 2026-05-27 02:27:19 +01:00
WorkerDebugConsoleClient.cpp LibJS: Add source locations to console.trace() 2026-02-06 11:58:07 +00:00
WorkerDebugConsoleClient.h LibWeb: Enable EXPLICIT_SYMBOL_EXPORT 2025-08-23 16:04:36 -06:00
WorkerGlobalScope.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
WorkerGlobalScope.h LibWeb: Make global prototype chains immutable 2026-04-03 18:33:45 +02:00
WorkerGlobalScope.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
WorkerLocation.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
WorkerLocation.h LibWeb: Enable EXPLICIT_SYMBOL_EXPORT 2025-08-23 16:04:36 -06:00
WorkerLocation.idl Meta: Disallow links to single-page HTML spec 2025-02-05 16:04:50 -07:00
WorkerNavigator.cpp LibWeb: Add basics for the Permissions API 2026-05-11 21:01:01 +02:00
WorkerNavigator.h LibWeb: Add basics for the Permissions API 2026-05-11 21:01:01 +02:00
WorkerNavigator.idl LibWeb: Add basics for the Permissions API 2026-05-11 21:01:01 +02:00
WorkletGlobalScope.cpp LibWeb: Add stub definition for WorkletGlobalScope 2024-11-30 11:19:35 +01:00
WorkletGlobalScope.h LibWeb: Add stub definition for WorkletGlobalScope 2024-11-30 11:19:35 +01:00
WorkletGlobalScope.idl LibWeb: Add stub definition for WorkletGlobalScope 2024-11-30 11:19:35 +01:00
XMLSerializer.cpp LibWeb/Bindings: Emit one bindings header and cpp per IDL 2026-04-21 07:36:13 +02:00
XMLSerializer.h Meta: Enforce newlines around namespaces 2025-05-14 02:01:59 -06:00
XMLSerializer.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00