ladybird/Userland/Libraries/LibWeb/HTML
Linus Groh 8f1d13e73b LibJS: Use a Variant instead of two Optionals for ThrowCompletionOr
Comes with the usual benefit of saving some space on the stack, as well
as making a situation where both or neither Optionals hold a value
impossible.

The various unwrapping additions are required as we can no longer
construct a ThrowCompletionOr<T> from an Optional<T> - rightfully so.
2023-03-01 17:55:42 +00:00
..
Canvas LibWeb: Make factory methods of HTML::CanvasGradient fallible 2023-02-18 00:52:47 +01:00
CrossOrigin LibJS: Use a Variant instead of two Optionals for ThrowCompletionOr 2023-03-01 17:55:42 +00:00
EventLoop LibJS: Add make_handle({Nonnull,}GCPtr<T>) overloads 2022-12-15 06:56:37 -05:00
Parser LibWeb: Make factory method of DOM::ElementFactory fallible 2023-02-22 09:55:33 +01:00
Scripting LibWeb: Make factory method of HTML::BrowsingContext fallible 2023-02-22 09:55:33 +01:00
SyntaxHighlighter Everywhere: Rename to_{string => deprecated_string}() where applicable 2022-12-06 08:54:33 +01:00
AnimationFrameCallbackDriver.h LibWeb+WebContent: Add abstraction layer for event loop and timers 2022-09-07 20:30:31 +02:00
AttributeNames.cpp AK+Everywhere: Rename FlyString to DeprecatedFlyString 2023-01-09 23:00:24 +00:00
AttributeNames.h AK+Everywhere: Rename FlyString to DeprecatedFlyString 2023-01-09 23:00:24 +00:00
BrowsingContext.cpp LibWeb: Rename Layout::InitialContainingBlock to Layout::Viewport 2023-02-28 12:21:56 +01:00
BrowsingContext.h LibWeb: Use browsing context creator URL for about:blank documents 2023-02-21 18:52:46 +01:00
BrowsingContextContainer.cpp LibWeb: Return after firing the iframe load event for about:blank 2022-11-07 14:10:41 +01:00
BrowsingContextContainer.h LibWeb: Make HTMLIFrameElement.contentWindow return the WindowProxy 2022-11-04 10:38:00 +01:00
BrowsingContextGroup.cpp LibWeb: Make BrowsingContext GC-allocated 2022-10-20 15:16:23 +02:00
BrowsingContextGroup.h LibWeb: Remove declarations for non-existent methods 2023-01-27 20:33:18 +00:00
CanvasGradient.cpp LibWeb: Make factory methods of HTML::CanvasGradient fallible 2023-02-18 00:52:47 +01:00
CanvasGradient.h LibWeb: Make factory methods of HTML::CanvasGradient fallible 2023-02-18 00:52:47 +01:00
CanvasGradient.idl LibWeb: Add barebones CanvasGradient object 2022-02-03 22:35:13 +01:00
CanvasPattern.cpp LibWeb: Implement CanvasRenderingContext2D.createPattern() 2023-02-03 20:36:21 +01:00
CanvasPattern.h LibWeb: Implement CanvasRenderingContext2D.createPattern() 2023-02-03 20:36:21 +01:00
CanvasPattern.idl LibWeb: Implement CanvasRenderingContext2D.createPattern() 2023-02-03 20:36:21 +01:00
CanvasRenderingContext2D.cpp LibWeb: Make canvas text preparation handle multi-code point glyphs 2023-02-24 20:28:23 +01:00
CanvasRenderingContext2D.h LibWeb: Make canvas text preparation handle multi-code point glyphs 2023-02-24 20:28:23 +01:00
CanvasRenderingContext2D.idl LibWeb: Add fixmes for other missing CRC2D mixins 2022-08-14 11:30:40 +02:00
CloseEvent.cpp LibWeb: Make factory method of HTML::CloseEvent fallible 2023-02-18 00:52:47 +01:00
CloseEvent.h LibWeb: Make factory method of HTML::CloseEvent fallible 2023-02-18 00:52:47 +01:00
CloseEvent.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
DocumentReadyState.h LibWeb: Store HTML document ready state as an enum 2021-09-26 12:47:51 +02:00
DOMParser.cpp LibWeb: Make factory method of DOM::ElementFactory fallible 2023-02-22 09:55:33 +01:00
DOMParser.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
DOMParser.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
DOMStringMap.cpp LibWeb: Restore proper functionality of legacy platform objects 2023-02-28 12:36:14 +01:00
DOMStringMap.h LibWeb: Restore proper functionality of legacy platform objects 2023-02-28 12:36:14 +01:00
DOMStringMap.idl LibWeb: Add support for HTMLOrSVGElement.dataset 2021-09-26 18:59:56 +02:00
ErrorEvent.cpp LibWeb: Make factory method of HTML::ErrorEvent fallible 2023-02-18 00:52:47 +01:00
ErrorEvent.h LibWeb: Make factory method of HTML::ErrorEvent fallible 2023-02-18 00:52:47 +01:00
ErrorEvent.idl LibWeb: Implement ErrorEvent 2022-02-07 14:58:18 +01:00
EventHandler.cpp AK+Everywhere: Rename String to DeprecatedString 2022-12-06 08:54:33 +01:00
EventHandler.h AK+Everywhere: Rename String to DeprecatedString 2022-12-06 08:54:33 +01:00
EventNames.cpp AK+Everywhere: Rename FlyString to DeprecatedFlyString 2023-01-09 23:00:24 +00:00
EventNames.h AK+Everywhere: Rename FlyString to DeprecatedFlyString 2023-01-09 23:00:24 +00:00
Focus.cpp LibWeb: Make factory methods of UIEvents::UIEvent fallible 2023-02-22 09:55:33 +01:00
Focus.h AK+Everywhere: Rename String to DeprecatedString 2022-12-06 08:54:33 +01:00
FormAssociatedElement.cpp Everywhere: Remove unnecessary mutable attributes from lambdas 2022-11-19 14:37:31 +00:00
FormAssociatedElement.h LibWeb: Implement HTMLFormElement::reset 2023-01-03 18:09:40 +01:00
FormControlInfrastructure.cpp LibWeb: Port IDL implementations Blob and File to new String 2023-02-26 00:27:22 +01:00
FormControlInfrastructure.h LibWeb: Convert FormData to String and Vector storage 2023-02-18 01:23:36 +01:00
FormDataEvent.cpp LibWeb: Introduce the FormDataEvent interface 2023-02-12 00:18:09 +00:00
FormDataEvent.h LibWeb: Introduce the FormDataEvent interface 2023-02-12 00:18:09 +00:00
FormDataEvent.idl LibWeb: Introduce the FormDataEvent interface 2023-02-12 00:18:09 +00:00
GlobalEventHandlers.cpp LibWeb: Move CallbackType from Bindings/ to WebIDL/ 2022-09-24 19:31:39 +01:00
GlobalEventHandlers.h AK+Everywhere: Rename FlyString to DeprecatedFlyString 2023-01-09 23:00:24 +00:00
History.cpp LibWeb: Make factory method of HTML::History fallible 2023-02-18 00:52:47 +01:00
History.h LibWeb: Make factory method of HTML::History fallible 2023-02-18 00:52:47 +01:00
History.idl LibWeb: Add missing property and methods for history object 2022-10-14 16:01:35 +02:00
HistoryHandlingBehavior.h LibWeb: Move HistoryHandlingBehavior enum to its own header 2022-09-20 10:32:12 +02:00
HTMLAnchorElement.cpp LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLAnchorElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLAnchorElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLAreaElement.cpp LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLAreaElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLAreaElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLAudioElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLAudioElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLAudioElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLBaseElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLBaseElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLBaseElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLBlinkElement.cpp LibWeb+WebContent: Add abstraction layer for event loop and timers 2022-09-07 20:30:31 +02:00
HTMLBlinkElement.h LibWeb: Remove WRAPPER_HACK() macro 2022-09-21 21:12:24 +01:00
HTMLBodyElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLBodyElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLBodyElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLBRElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLBRElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLBRElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLButtonElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLButtonElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLButtonElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLCanvasElement.cpp LibWeb: Make factory method of HTML::CanvasRenderingContext2D fallible 2023-02-18 00:52:47 +01:00
HTMLCanvasElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLCanvasElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLDataElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLDataElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLDataElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLDataListElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLDataListElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLDataListElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLDetailsElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLDetailsElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLDetailsElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLDialogElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLDialogElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLDialogElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLDirectoryElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLDirectoryElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLDirectoryElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLDivElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLDivElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLDivElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLDListElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLDListElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLDListElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLElement.cpp LibWeb: Make factory method of HTML::DOMStringMap fallible 2023-02-18 00:52:47 +01:00
HTMLElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLElement.idl LibWeb: Implement bare-bones HTMLElement.dir 2022-11-13 16:37:09 -07:00
HTMLEmbedElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLEmbedElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLEmbedElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLFieldSetElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLFieldSetElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLFieldSetElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLFontElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLFontElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLFontElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLFormElement.cpp LibWeb: Make factory method of HTML::SubmitEvent fallible 2023-02-18 00:52:47 +01:00
HTMLFormElement.h LibWeb: Add accessor function HTMLFormElement::constructing_entry_list() 2023-02-12 00:18:09 +00:00
HTMLFormElement.idl LibWeb: Implement HTMLFormElement::reset 2023-01-03 18:09:40 +01:00
HTMLFrameElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLFrameElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLFrameElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLFrameSetElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLFrameSetElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLFrameSetElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLHeadElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLHeadElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLHeadElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLHeadingElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLHeadingElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLHeadingElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLHRElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLHRElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLHRElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLHtmlElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLHtmlElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLHtmlElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLHyperlinkElementUtils.cpp LibWeb: Use is_ascii_case_insensitive_match() where the spec says to 2023-02-19 00:46:47 +01:00
HTMLHyperlinkElementUtils.h LibWeb: Fully Implement get_an_elements_noopener 2022-12-19 07:57:44 -05:00
HTMLHyperlinkElementUtils.idl LibWeb: Extract the HTMLHyperlinkElementUtils IDL mixin 2022-07-29 17:15:49 +01:00
HTMLIFrameElement.cpp LibWeb: Make factory methods of DOM::Event fallible 2023-02-18 00:52:47 +01:00
HTMLIFrameElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLIFrameElement.idl LibWeb: Make HTMLIFrameElement.contentWindow return the WindowProxy 2022-11-04 10:38:00 +01:00
HTMLImageElement.cpp LibWeb: Make factory methods of DOM::Event fallible 2023-02-18 00:52:47 +01:00
HTMLImageElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLImageElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLInputElement.cpp LibWeb: Make factory methods of DOM::Event fallible 2023-02-18 00:52:47 +01:00
HTMLInputElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLInputElement.idl LibWeb: Stub HTMLInputElement.setSelectionRange 2022-12-30 21:56:54 -05:00
HTMLLabelElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLLabelElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLLabelElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLLegendElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLLegendElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLLegendElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLLIElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLLIElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLLIElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLLinkElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLLinkElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLLinkElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLMapElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLMapElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLMapElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLMarqueeElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLMarqueeElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLMarqueeElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLMediaElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLMediaElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLMediaElement.idl LibWeb: Stub HTMLMediaElement.pause 2022-12-10 00:21:10 +00:00
HTMLMenuElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLMenuElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLMenuElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLMetaElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLMetaElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLMetaElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLMeterElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLMeterElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLMeterElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLModElement.cpp LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLModElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLModElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLObjectElement.cpp LibWeb: Make factory methods of DOM::Event fallible 2023-02-18 00:52:47 +01:00
HTMLObjectElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLObjectElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLOListElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLOListElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLOListElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLOptGroupElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLOptGroupElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLOptGroupElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLOptionElement.cpp LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLOptionElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLOptionElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLOptionsCollection.cpp LibWeb: Make factory method of HTML::HTMLOptionsCollection fallible 2023-02-18 00:52:47 +01:00
HTMLOptionsCollection.h LibWeb: Make factory method of HTML::HTMLOptionsCollection fallible 2023-02-18 00:52:47 +01:00
HTMLOptionsCollection.idl LibWeb: Implement HTMLOptionsCollection.add() 2022-03-22 02:08:15 +01:00
HTMLOutputElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLOutputElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLOutputElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLParagraphElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLParagraphElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLParagraphElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLParamElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLParamElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLParamElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLPictureElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLPictureElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLPictureElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLPreElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLPreElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLPreElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLProgressElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLProgressElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLProgressElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLQuoteElement.cpp LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLQuoteElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLQuoteElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLScriptElement.cpp LibTextCodec+Everywhere: Port Decoders to new Strings 2023-02-19 17:15:47 +01:00
HTMLScriptElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLScriptElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLSelectElement.cpp LibWeb: Make factory method of HTML::HTMLOptionsCollection fallible 2023-02-18 00:52:47 +01:00
HTMLSelectElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLSelectElement.idl LibWeb: Implement HTMLSelectElement.type 2022-11-07 14:10:41 +01:00
HTMLSlotElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLSlotElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLSlotElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLSourceElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLSourceElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLSourceElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLSpanElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLSpanElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLSpanElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLStyleElement.cpp LibWeb: Use is_ascii_case_insensitive_match() where the spec says to 2023-02-19 00:46:47 +01:00
HTMLStyleElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLStyleElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLTableCaptionElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLTableCaptionElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLTableCaptionElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLTableCellElement.cpp LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLTableCellElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLTableCellElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLTableColElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLTableColElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLTableColElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLTableElement.cpp LibWeb: Make factory method of DOM::ElementFactory fallible 2023-02-22 09:55:33 +01:00
HTMLTableElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLTableElement.idl LibWeb: Add missing [SameObject] extended attributes in IDL files 2022-11-25 22:49:59 +01:00
HTMLTableRowElement.cpp LibWeb: Make factory method of DOM::ElementFactory fallible 2023-02-22 09:55:33 +01:00
HTMLTableRowElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLTableRowElement.idl LibWeb: Implement HTMLTableRowElement.deleteCell 2022-11-07 14:10:41 +01:00
HTMLTableSectionElement.cpp LibWeb: Make factory method of DOM::ElementFactory fallible 2023-02-22 09:55:33 +01:00
HTMLTableSectionElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLTableSectionElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLTemplateElement.cpp LibJS+Everywhere: Propagate Cell::initialize errors from Heap::allocate 2023-01-29 00:02:45 +00:00
HTMLTemplateElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLTemplateElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLTextAreaElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLTextAreaElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLTextAreaElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLTimeElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLTimeElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLTimeElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLTitleElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLTitleElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLTitleElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLTrackElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLTrackElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLTrackElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLUListElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLUListElement.h LibWeb: Move ARIA-related code into the Web::ARIA namespace 2023-01-29 00:02:55 +00:00
HTMLUListElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLUnknownElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLUnknownElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLUnknownElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
HTMLVideoElement.cpp LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLVideoElement.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
HTMLVideoElement.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
ImageData.cpp LibJS+Everywhere: Propagate Cell::initialize errors from Heap::allocate 2023-01-29 00:02:45 +00:00
ImageData.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
ImageData.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
Location.cpp LibJS+Everywhere: Convert JS::Error to String 2023-02-17 09:14:23 -05:00
Location.h LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errors 2023-01-29 00:02:45 +00:00
Location.idl LibWeb: Convert the Location object to IDL 2023-01-18 17:36:39 -05:00
MessageChannel.cpp LibWeb: Make factory method of HTML::MessagePort fallible 2023-02-18 00:52:47 +01:00
MessageChannel.h LibWeb: Make factory method of HTML::MessageChannel fallible 2023-02-18 00:52:47 +01:00
MessageChannel.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
MessageEvent.cpp LibWeb: Make factory methods of HTML::MessageEvent fallible 2023-02-18 00:52:47 +01:00
MessageEvent.h LibWeb: Make factory methods of HTML::MessageEvent fallible 2023-02-18 00:52:47 +01:00
MessageEvent.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
MessagePort.cpp LibWeb: Make factory method of HTML::MessagePort fallible 2023-02-18 00:52:47 +01:00
MessagePort.h LibWeb: Make factory method of HTML::MessagePort fallible 2023-02-18 00:52:47 +01:00
MessagePort.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
MimeType.cpp LibWeb: Follow-up fixes for Linus's comments in #17658 2023-02-28 13:16:39 +01:00
MimeType.h LibWeb: Follow-up fixes for Linus's comments in #17658 2023-02-28 13:16:39 +01:00
MimeType.idl LibWeb: Implement navigator.{plugins,mimeTypes} 2023-02-28 12:36:14 +01:00
MimeTypeArray.cpp LibWeb: Implement navigator.{plugins,mimeTypes} 2023-02-28 12:36:14 +01:00
MimeTypeArray.h LibWeb: Implement navigator.{plugins,mimeTypes} 2023-02-28 12:36:14 +01:00
MimeTypeArray.idl LibWeb: Implement navigator.{plugins,mimeTypes} 2023-02-28 12:36:14 +01:00
NavigationParams.h AK+Everywhere: Rename String to DeprecatedString 2022-12-06 08:54:33 +01:00
Navigator.cpp LibWeb: Implement navigator.{plugins,mimeTypes} 2023-02-28 12:36:14 +01:00
Navigator.h LibWeb: Implement navigator.{plugins,mimeTypes} 2023-02-28 12:36:14 +01:00
Navigator.idl LibWeb: Implement navigator.{plugins,mimeTypes} 2023-02-28 12:36:14 +01:00
NavigatorConcurrentHardware.h LibWeb: Re-implement HTML::Navigator using IDL 2022-10-09 10:14:57 +02:00
NavigatorConcurrentHardware.idl LibWeb: Re-implement HTML::Navigator using IDL 2022-10-09 10:14:57 +02:00
NavigatorID.cpp AK+Everywhere: Rename String to DeprecatedString 2022-12-06 08:54:33 +01:00
NavigatorID.h AK+Everywhere: Rename String to DeprecatedString 2022-12-06 08:54:33 +01:00
NavigatorID.idl LibWeb: Re-implement HTML::Navigator using IDL 2022-10-09 10:14:57 +02:00
NavigatorLanguage.h AK+Everywhere: Rename String to DeprecatedString 2022-12-06 08:54:33 +01:00
NavigatorLanguage.idl LibWeb: Make navigator.languages an attribute instead of a function 2022-10-13 14:42:14 +02:00
NavigatorOnLine.h LibWeb: Re-implement HTML::Navigator using IDL 2022-10-09 10:14:57 +02:00
NavigatorOnLine.idl LibWeb: Re-implement HTML::Navigator using IDL 2022-10-09 10:14:57 +02:00
Origin.h Everywhere: Rename to_{string => deprecated_string}() where applicable 2022-12-06 08:54:33 +01:00
PageTransitionEvent.cpp LibWeb: Make factory method of HTML::PageTransitionEvent fallible 2023-02-18 00:52:47 +01:00
PageTransitionEvent.h LibWeb: Make factory method of HTML::PageTransitionEvent fallible 2023-02-18 00:52:47 +01:00
PageTransitionEvent.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
Path2D.cpp LibWeb: Implement Path2D#addPath 2023-02-27 20:55:09 +01:00
Path2D.h LibWeb: Implement Path2D#addPath 2023-02-27 20:55:09 +01:00
Path2D.idl LibWeb: Implement Path2D#addPath 2023-02-27 20:55:09 +01:00
Plugin.cpp Everywhere: Use '_{short_,}string' literals more 2023-02-28 15:15:36 +00:00
Plugin.h LibWeb: Follow-up fixes for Linus's comments in #17658 2023-02-28 13:16:39 +01:00
Plugin.idl LibWeb: Implement navigator.{plugins,mimeTypes} 2023-02-28 12:36:14 +01:00
PluginArray.cpp LibWeb: Implement navigator.{plugins,mimeTypes} 2023-02-28 12:36:14 +01:00
PluginArray.h LibWeb: Implement navigator.{plugins,mimeTypes} 2023-02-28 12:36:14 +01:00
PluginArray.idl LibWeb: Implement navigator.{plugins,mimeTypes} 2023-02-28 12:36:14 +01:00
PolicyContainers.h LibWeb: Add referrer policy to PolicyContainer 2022-10-24 22:58:37 +01:00
PromiseRejectionEvent.cpp LibWeb: Make factory method of HTML::PromiseRejectionEvent fallible 2023-02-18 00:52:47 +01:00
PromiseRejectionEvent.h LibWeb: Make factory method of HTML::PromiseRejectionEvent fallible 2023-02-18 00:52:47 +01:00
PromiseRejectionEvent.idl LibWeb: Remove the NoInstanceWrapper extended IDL attribute 2022-09-06 00:27:09 +02:00
SandboxingFlagSet.h LibWeb: Add missing includes 2022-09-18 13:27:24 -04:00
SessionHistoryEntry.h AK+Everywhere: Rename String to DeprecatedString 2022-12-06 08:54:33 +01:00
Storage.cpp LibWeb: Restore Storage as a legacy platform object 2023-02-28 12:36:14 +01:00
Storage.h LibWeb: Restore Storage as a legacy platform object 2023-02-28 12:36:14 +01:00
Storage.idl LibWeb: Add Storage interface and window.localStorage 2022-02-08 21:53:20 +01:00
StructuredSerialize.cpp LibWeb: Add initial implementation of structured clone 2022-11-26 00:47:23 +01:00
StructuredSerialize.h LibWeb: Add initial implementation of structured clone 2022-11-26 00:47:23 +01:00
SubmitEvent.cpp LibWeb: Make factory method of HTML::SubmitEvent fallible 2023-02-18 00:52:47 +01:00
SubmitEvent.h LibWeb: Make factory method of HTML::SubmitEvent fallible 2023-02-18 00:52:47 +01:00
SubmitEvent.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
TagNames.cpp AK+Everywhere: Rename FlyString to DeprecatedFlyString 2023-01-09 23:00:24 +00:00
TagNames.h AK+Everywhere: Rename FlyString to DeprecatedFlyString 2023-01-09 23:00:24 +00:00
TextMetrics.cpp LibWeb: Make factory method of HTML::TextMetrics fallible 2023-02-18 00:52:47 +01:00
TextMetrics.h LibWeb: Make factory method of HTML::TextMetrics fallible 2023-02-18 00:52:47 +01:00
TextMetrics.idl LibWeb: Add Exposed attribute and IDL spec links where missing 2022-10-09 10:14:57 +02:00
Timer.cpp LibJS: Convert Heap::allocate{,_without_realm}() to NonnullGCPtr 2022-12-15 06:56:37 -05:00
Timer.h LibWeb+WebContent: Add abstraction layer for event loop and timers 2022-09-07 20:30:31 +02:00
VisibilityState.h LibWeb+WebContent+Browser: Plumb visibility state from GUI to web pages 2022-09-20 10:32:14 +02:00
Window.cpp Everywhere: Use '_{short_,}string' literals more 2023-02-28 15:15:36 +00:00
Window.h LibWeb: Implement navigator.{plugins,mimeTypes} 2023-02-28 12:36:14 +01:00
WindowEventHandlers.cpp LibWeb: Move CallbackType from Bindings/ to WebIDL/ 2022-09-24 19:31:39 +01:00
WindowEventHandlers.h LibWeb: Move CallbackType from Bindings/ to WebIDL/ 2022-09-24 19:31:39 +01:00
WindowOrWorkerGlobalScope.idl LibWeb: Extract the WindowOrWorkerGlobalScope IDL mixin 2022-07-29 17:15:49 +01:00
WindowProxy.cpp LibJS: Replace standalone js_string() with PrimitiveString::create() 2022-12-07 16:43:06 +00:00
WindowProxy.h LibWeb: Create and hook up a WindowProxy for each BrowsingContext 2022-10-20 15:16:23 +02:00
Worker.cpp LibWeb: Port Worker to new String 2023-02-23 15:48:38 +00:00
Worker.h Everywhere: Use _{short_,}string to create Strings from literals 2023-02-25 20:51:49 +01:00
Worker.idl LibWeb: Port Worker to new String 2023-02-23 15:48:38 +00:00
WorkerDebugConsoleClient.cpp LibWeb+LibJS: Format Console arguments with JS::Print 2023-02-21 10:57:44 +01:00
WorkerDebugConsoleClient.h LibWeb: Add partially functioning Worker API 2022-02-17 22:45:21 +01:00
WorkerGlobalScope.cpp LibWeb: Port WorkerGlobalScope to new String 2023-02-23 15:48:38 +00:00
WorkerGlobalScope.h LibWeb: Port WorkerGlobalScope to new String 2023-02-23 15:48:38 +00:00
WorkerGlobalScope.idl LibWeb: Port WorkerGlobalScope to new String 2023-02-23 15:48:38 +00:00
WorkerLocation.cpp LibWeb: Port WorkerLocation to new String 2023-02-23 15:48:38 +00:00
WorkerLocation.h LibWeb: Port WorkerLocation to new String 2023-02-23 15:48:38 +00:00
WorkerLocation.idl LibWeb: Port WorkerLocation to new String 2023-02-23 15:48:38 +00:00
WorkerNavigator.cpp LibWeb: Make factory method of HTML::WorkerNavigator fallible 2023-02-18 00:52:47 +01:00
WorkerNavigator.h LibWeb: Make factory method of HTML::WorkerNavigator fallible 2023-02-18 00:52:47 +01:00
WorkerNavigator.idl LibWeb: Re-implement HTML::Navigator using IDL 2022-10-09 10:14:57 +02:00