ladybird/Tests/LibWeb/Text/input
Luke Wilde 8dc8835b64 LibWeb+LibWebView+WebContent: Allow muted media to autoplay by default
The autoplay setting was binary and its default blocked all media,
including muted video, leaving sites that rely on muted autoplay
visibly broken. Replace it with a tri-state user-agent autoplay
policy (allow audio and video, block audio, or block audio and video)
defaulting to allowing only inaudible media to autoplay.

This is enforced through the media element's "allowed to play" check,
so unmuting a muted autoplay or calling `play()` cannot slip audio
past the policy; audible playback is permitted once the document has
been activated by the user. The policy lives in a dedicated
AutoplaySettings consulted from HTMLMediaElement instead of the
Permissions Policy "allowed to use feature" check it was previously
conflated with.
2026-06-19 09:41:32 +02:00
..
async-scrolling LibWeb: Propagate blocking wheel regions to descendants 2026-05-27 16:23:04 +01:00
base Tests/LibWeb: Ignore stale initial iframe load in a-element-target.html 2026-05-26 21:44:04 +02:00
Cache RequestServer: Use correct request map for stale-while-revalidate cookie 2026-04-13 19:43:13 -04:00
canvas LibWeb: Preserve implemented overloads with FIXME siblings 2026-06-09 16:08:44 +02:00
Clipboard Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
Compression Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
console Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
ContentSecurityPolicy LibWeb: Replace the HTML tokenizer with Rust 2026-05-15 21:01:40 +02:00
CredentialManagement LibWeb: Implement FederatedCredential ctor and corresponding AO 2026-01-08 13:10:35 +01:00
Crypto LibWeb/Crypto: Serialize CryptoKey [[handle]] 2026-05-27 02:44:46 +01:00
css LibWeb: Bucket pseudo :is() rules by originating element 2026-06-19 09:36:53 +02:00
css-has-invalidation LibWeb: Avoid cold rule cache builds for :has() checks 2026-05-23 22:03:46 +02:00
CSSOMView LibWeb: Preserve scroll offset for nearest scrollIntoView 2026-05-30 21:36:47 +02:00
display_list LibWeb: Skip repaint for visual context-only style changes 2026-06-18 00:12:42 +02:00
DOM LibWeb: Handle Range rects starting after last child 2026-06-08 01:04:08 +02:00
Editing Tests: Add explicit UTF-8 charset declarations to existing tests 2026-05-23 11:57:33 +02:00
Encoding Tests: Add explicit UTF-8 charset declarations to existing tests 2026-05-23 11:57:33 +02:00
Fetch Tests: Add explicit UTF-8 charset declarations to existing tests 2026-05-23 11:57:33 +02:00
FileAPI Tests: Add explicit UTF-8 charset declarations to existing tests 2026-05-23 11:57:33 +02:00
fullscreen LibWeb: Use a queue to process fullscreen request completions 2026-03-17 18:58:37 -05:00
GamepadAPI Tests: Disconnect the virtual gamepad in the navigables gamepad test 2026-01-06 12:14:22 +01:00
geometry LibWeb: Avoid normalizing zero axis in DOMMatrix.rotateAxisAngleSelf() 2026-05-16 10:14:48 +02:00
grid LibWeb: Avoid inflating 0fr grid rows from hidden overflow 2026-06-08 10:06:07 +02:00
hit_testing LibWeb: Hit-test SVG paths against their fill geometry 2026-06-14 17:45:28 +02:00
HSTS LibWeb+LibHTTP: Consult HSTS preload list before dynamic-store IPC 2026-05-29 22:23:33 +02:00
HTML LibWeb+LibWebView+WebContent: Allow muted media to autoplay by default 2026-06-19 09:41:32 +02:00
Internals LibWeb: Add dumpPaintableTree() to Internals API 2026-02-15 17:47:30 +01:00
IntersectionObserver LibWeb: Schedule a frame when IntersectionObserver starts observing 2026-04-30 21:14:03 +02:00
Layout LibWeb: Avoid relayout for definite-size image updates 2026-05-22 15:09:29 +02:00
layout-tree-update LibWeb: Seed ancestor context for computing style with no layout node 2026-03-24 05:02:48 +01:00
MathML LibWeb/MathML: Parse mathcolor and mathbackground as <color> 2025-11-14 09:55:02 +00:00
Messaging LibWeb+LibIPC: Preserve MessagePort queue state across transfer 2026-04-09 19:59:16 +02:00
MutationObserver Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
navigation LibWeb: Preserve live iframe navigations during history 2026-06-17 02:17:34 +02:00
PerformanceObserver Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
popover LibWeb: Light dismiss popovers on click 2025-04-28 19:41:38 -06:00
regress LibWeb: Perform a microtask checkpoint - VERIFY after reentrancy return 2026-02-19 08:12:31 +01:00
ResizeObserver LibWeb: Keep ResizeObserver targets weakly 2026-05-16 18:48:52 +02:00
ServiceWorker LibWeb: Implement ServiceWorkerContainer getRegistrations 2026-05-23 19:11:01 +02:00
ShadowDOM LibWeb: Limit non-inherited inherit tracking to direct children 2026-05-22 09:38:59 +02:00
Streams LibWeb: Fix crash when reading a detached or out-of-bounds stream chunk 2026-06-08 13:45:00 +02:00
SVG LibWeb: Unregister a “use” element from its document when finalized 2026-06-18 09:39:47 +02:00
UIEvents LibWeb: Use Event storage for MouseEvent relatedTarget 2026-06-18 12:40:37 +02:00
URL LibURL: Remove default port handling for the IRC schemes 2026-01-26 18:46:59 +01:00
Wasm LibWasm: Add missing tag section validation 2026-01-08 18:49:24 +01:00
WebAnimations LibWeb: Apply animations without timelines when updating animated style 2026-05-22 11:59:19 +01:00
WebAudio LibWeb/WebAudio: Implement basic startRendering 2025-10-26 14:19:21 +01:00
WebSocket Tests: Run a local WebSocket echo server in place of the hosted one 2026-05-31 14:08:50 +02:00
Worker LibWeb/Bindings: Don't install inherited members on global objects 2026-06-11 21:35:56 +02:00
wpt-import LibWeb: Support anchor() in calc() trees 2026-06-18 17:36:56 +01:00
XHR Tests/LibWeb: Do not hardcode URL path for echo server tests 2026-03-23 22:32:43 +01:00
XHTML LibWeb: Use XML encoding rules for XML document loading 2026-05-24 00:51:14 +02:00
XML LibXML: Prevent auto-detection of UTF-32 encoding by libxml2 2026-01-08 10:06:40 +01:00
abortsignal-abort.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
abortsignal-any.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
abortsignal-timeout.html Tests: De-flake abortsignal-timeout by dropping its wall-clock assertion 2026-06-05 15:35:34 +02:00
abspos-child-inside-abspos-table.html LibWeb: Accept TableWrapper as containing block for abspos items 2025-01-21 15:24:05 +01:00
abspos-flex-aspect-ratio-definite-height.html LibWeb: Don't mark auto height as definite for abspos non-BFC elements 2026-04-03 14:29:44 +02:00
abspos-flex-calc-insets-definite-height.html LibWeb: Don't mark auto height as definite for abspos non-BFC elements 2026-04-03 14:29:44 +02:00
alert.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
all-window-properties.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
anchor-element-covered-by-pseudoelement.html LibWeb: Unit test for Anchor element covered by pseudo-element 2025-06-09 16:20:43 +01:00
anchor-element-with-javascript-url-href.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
anchor-parse-nested-invalid.html LibWeb: Remove bogus discard_a_token() from CSS anchor fallback parsing 2026-04-01 19:41:46 +01:00
anchor-positioning-basic-insets.html LibWeb: Implement CSS anchor positioning 2026-04-01 19:41:46 +01:00
anchor-positioning-duplicate-names.html LibWeb: Implement CSS anchor positioning 2026-04-01 19:41:46 +01:00
anchor-positioning-explicit-names.html LibWeb: Implement CSS anchor positioning 2026-04-01 19:41:46 +01:00
anchor-positioning-fallback-values.html LibWeb: Implement CSS anchor positioning 2026-04-01 19:41:46 +01:00
anchor-positioning-inside-outside.html LibWeb: Implement CSS anchor positioning 2026-04-01 19:41:46 +01:00
anchor-positioning-logical-sides.html LibWeb: Implement CSS anchor positioning 2026-04-01 19:41:46 +01:00
append-child-must-update-layout-tree.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
aria-level-heading-implicit-default.html LibWeb: Derive implicit aria-level for h1–h6 from tag name 2025-10-10 17:18:02 +01:00
Attr-cloneNode.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
backdrop-receives-element-events.html LibWeb: Dispatch pointer events to ::backdrop originating element 2025-04-09 12:10:42 +01:00
background-position-xy.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
background-style-declaration-cssText-crash.html LibWeb: Parse background positions as shorthands 2024-12-30 11:07:53 +01:00
basic.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
body-background-color-red.css LibWeb: Forward media attribute from link element to loaded style sheet 2023-06-11 06:05:03 +02:00
body-link-attributes-and-system-colors.html LibWeb: Apply body attribute link colors as presentational hints 2026-06-04 16:14:05 +02:00
border-radius-div-containing-iframe-with-border-radius-svg.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
cancel-of-pointerdown-or-mousedown-should-skip-focus-steps.html Tests: Revise the focus steps skip test to test mousedown separately 2026-03-17 04:01:29 -05:00
canvas-changed-width-attribute.html LibWeb: Notify canvas context when width or height attribute is changed 2024-12-28 10:37:15 +01:00
caret-position-between-post-info-and-body.html LibWeb: Improve caret placement from retained hit-test data 2026-05-30 13:50:48 +02:00
caret-position-ignores-negative-z-decoration.html LibWeb: Improve caret placement from retained hit-test data 2026-05-30 13:50:48 +02:00
caret-position-line-edge-ranking.html LibWeb: Improve caret placement from retained hit-test data 2026-05-30 13:50:48 +02:00
checkbox-focus-lost-no-change-event.html LibWeb: Update checkbox focus lost test 2024-11-22 13:58:36 +00:00
clamp-negative-padding-in-calc.html LibWeb/CSS: Migrate some call sites to non-deprecated resolve_* methods 2025-09-07 15:55:16 +01:00
click-behind-user-select-none-fragment.html LibWeb: Do not re-target hits to fragments with user-select:none 2026-02-16 08:39:28 +01:00
clip-path-hit-testing.html Tests: Add test for clip-path hit testing 2026-01-16 13:39:02 +01:00
clipboard.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
close-non-modal-dialog.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
CloseWatcher-abort-requestClose.html LibWeb: Handle abort signal in CloseWatcher 2024-12-07 12:06:53 +00:00
CloseWatcher-already-aborted.html LibWeb: Handle abort signal in CloseWatcher 2024-12-07 12:06:53 +00:00
CloseWatcher-fire-once.html LibWeb: Handle abort signal in CloseWatcher 2024-12-07 12:06:53 +00:00
collapse-selection-inside-shadow-root.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
content-blocker-class-change-preserves-author-invalidation.html LibWeb: Add content blocker style tests 2026-05-21 21:16:56 +02:00
content-blocker-constructed-shadow-cache.html LibWeb: Add content blocker style tests 2026-05-21 21:16:56 +02:00
content-blocker-irrelevant-class-id-change-skips-refresh.html LibWeb: Refresh blocker CSS after relevant class/id changes 2026-05-24 08:16:46 +02:00
content-blocker-replacement-invalidates-iframe-style.html LibWeb: Add content blocker style tests 2026-05-21 21:16:56 +02:00
content-blocker-replacement-recomputes-style.html LibWeb: Add content blocker style tests 2026-05-21 21:16:56 +02:00
content-blocker-shadow-cache-survives-class-refresh.html LibWeb: Keep shadow rule caches for user styles 2026-05-23 22:03:46 +02:00
content-blocker-shadow-generic-selectors.html LibWeb: Add content blocker style tests 2026-05-21 21:16:56 +02:00
content-blocker-shadow-has-state-invalidation.html LibWeb: Keep shadow rule caches for user styles 2026-05-23 22:03:46 +02:00
content-blocker-shadow-pseudo-class-invalidation.html LibWeb: Keep shadow rule caches for user styles 2026-05-23 22:03:46 +02:00
content-blocker-srcdoc-frame-cosmetic-source.html Tests: Make srcdoc content blocker test deterministic 2026-06-04 23:44:18 +09:00
content-blocker-svg-image-skips-cosmetic-css.html LibWeb: Skip cosmetic blocking in SVG images 2026-05-24 09:58:10 +02:00
content-blocker-toggle-invalidates-style.html LibWeb: Add content blocker style tests 2026-05-21 21:16:56 +02:00
contenteditable-should-insert-into-nested-node.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
cookie-file.html Tests/LibWeb: Split cookies test into two 2026-02-21 23:00:57 +01:00
cookie-working.html LibWebView: Restore RFC cookie storage behavior 2026-06-18 11:37:36 +02:00
corrupt-svg-favicon.html LibWeb+LibXML: Make Listener::set_source(ByteString) fallible 2025-10-02 02:25:28 +02:00
createBitmap.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
css-accent-color.html LibWeb/CSS: Make accentColor and accentColorText take accent-color value 2026-02-02 14:19:08 +00:00
css-placeholder-transition.html LibWeb: Add test for CSS transitions on ::placeholder pseudo-elements 2026-05-22 10:07:29 +01:00
css-shadow-host-selector-matching.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
css-transform-transition-to-none-invalidation.html LibWeb: Fix CSS transform invalidation when transitioning to none 2025-03-15 13:30:45 +01:00
CSSStyleDeclaration-custom-properties-3838.html LibWeb: Invalidate element with CSS custom props on attribute changes 2025-03-13 19:20:37 +01:00
custom-property-from-parent.html LibWeb/CSS: Check for matching custom properties on parent elements 2024-11-22 00:32:19 +01:00
details-inside-slot-opened.html LibWeb/DOM: Walk the flat tree to propagate layout tree updates 2026-02-05 11:21:08 +01:00
device-pixel-ratio-media-query.html LibWeb+WebContent: Instantly update DPI for painting and media queries 2026-02-06 09:01:26 +01:00
dialog-light-dismiss.html LibWeb: Light dismiss dialogs on click 2025-04-28 19:41:38 -06:00
display-contents-flattened-text-style-and-order.html LibWeb: Make layout nodes refcounted 2026-06-07 20:52:49 +02:00
display-contents-pseudo-accessible-name.html LibWeb: Make layout nodes refcounted 2026-06-07 20:52:49 +02:00
document-adopted-style-sheets.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
document-caret-position-from-point-shadow-roots.html LibWeb: Expose document caretPositionFromPoint 2026-05-30 13:50:48 +02:00
document-caret-position-from-point.html LibWeb: Expose document caretPositionFromPoint 2026-05-30 13:50:48 +02:00
document-computed-mimetype.html Tests: Specify Content-Type header in tests that use HTTP server 2025-11-20 06:29:13 -05:00
document-scrollingElement-quirks-mode.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
document-scrollingElement.html LibWeb: Implement document.scrollingElement 2024-02-15 22:51:15 -05:00
DOMTokenList-supports.html LibWeb: Flesh out DOMTokenList::supports() implementation 2024-05-16 20:31:23 +02:00
double-click-password.html Tests: Simulate the first click in the double-click-password.html test 2026-03-17 04:01:29 -05:00
element-get-bounding-client-rect-css-transform.html LibWeb: Apply transform origin in Element::get_client_rects() 2024-03-07 00:28:29 +01:00
element-get-bounding-client-rect-nested-transform-origins.html Tests: Add failing test for getBoundingClientRect with nested transforms 2026-01-19 08:53:30 +01:00
element-get-bounding-client-rect-of-sticky.html LibWeb: Don't re-invent println for sticky element test 2024-10-24 20:41:30 -04:00
element-get-bounding-client-rect-scroll-offset.html LibWeb: Account for scroll offset in Element::get_client_rects() 2024-03-17 13:32:04 +01:00
element-get-client-rects.html LibWeb: Follow the spec more precisely in Element::getClientRects() 2024-01-30 14:50:25 +01:00
Element-offsetParent-of-iframe.html LibWeb: Don't crash in offset_parent() if no ancestor element found 2024-02-29 21:54:53 -05:00
element-scroll-event.html LibWeb: Fire "scroll" events on DOM elements 2024-04-23 11:00:35 +02:00
element-scrollby-event.html LibWeb: Implement Element::scroll(HTML::ScrollToOptions) 2024-05-07 17:21:52 -06:00
Element-scrollby-negative-scroll-offset-crash.html LibWeb: Clamp paintable box maximum scroll offset to 0 2024-07-22 09:13:25 +02:00
Element-toggleAttribute-invalid-name.html LibWeb: Update attribute name validation in Element.toggleAttribute 2025-06-19 11:00:53 +01:00
error-stack-must-contain-full-url.html Tests: Ensure error-stack-must-contain-full-url prints output in order 2026-05-13 11:02:40 +01:00
external-object.html LibWeb: Implement External interface 2026-01-22 14:56:46 +01:00
failed-img-should-not-delay-load-event-forever.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
favicon-in-inactive-document.html LibWeb: Skip HTMLLinkElement resource fetching for documents without BC 2024-04-25 09:31:01 +02:00
fieldset-client-dimensions.html LibWeb: Calculate a <fieldset>'s client height correctly 2026-03-10 19:08:15 +00:00
fieldset-elements.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
flex-container-with-oversized-replaced-element.html LibWeb: Don't distort replaced elements with natural size in flex layout 2025-07-15 00:52:50 +02:00
flex-max-height-percentage-indefinite-cross-size.html LibWeb: Don't mark auto height as definite for abspos non-BFC elements 2026-04-03 14:29:44 +02:00
flex-sticky-height-zero-page-scroll.html LibWeb: Include zero-area boxes when measuring scrollable overflow 2026-02-22 14:23:44 +01:00
focus-chain.html LibWeb: Map document element focus to the viewport 2026-05-21 08:56:05 +02:00
focus-contenteditable.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
focus-events.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
focus-shouldIndicateFocus.html LibWeb: Indicate focus on contenteditable elements 2025-08-20 11:36:27 +02:00
font-cascade-space-fallback.html LibWeb: Verify whitespace font has the glyph in font_for_space() 2026-04-22 20:27:41 +02:00
form-elements-keeps-form-alive.html LibWeb: Fix use-after-free in live-collection filter captures 2026-06-07 22:16:33 +02:00
form-formEnctype-attribute.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
form-formMethod-attribute.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
form-has-invalid-style-invalidation.html LibWeb: Invalidate style when form control validity changes 2026-06-08 19:28:37 +02:00
form-method-attribute.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
form-method-dialog.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
form-requestSubmit.html LibWeb: Implement HTMLFormElement.requestSubmit() 2024-02-16 17:21:48 -05:00
get-bounding-client-rect-display-none.html LibWeb: Add null check for get_client_rects() on non paintable elements 2024-04-24 18:04:28 +02:00
get-bounding-client-rect-pinch-zoom.html LibWeb: Keep pinch zoom out of client rects 2026-06-16 02:03:59 +02:00
get-bounding-client-rect.html LibWeb: Prevent calling test() twice 2023-12-22 16:49:06 +01:00
getComputedStyle-grid-template-rows-columns.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
global-performance-property.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
grid-auto-height-row-track-spacing.html LibWeb: Align auto-height grid rows with used height 2026-05-19 10:41:52 +02:00
grid-percentage-preferred-size-definite-area.html LibWeb: Resolve grid item percentages against definite areas 2026-04-03 14:29:44 +02:00
grid-table-wrapper-auto-margin-percentage-width.html Tests: Split heavy grid table wrapper text test 2026-05-22 15:48:00 +02:00
grid-table-wrapper-auto-width-oversized-alignment.html LibWeb: Cover table wrappers in grid layout 2026-05-19 10:41:52 +02:00
grid-table-wrapper-percentage-width-spaced-tracks.html LibWeb: Cover table wrappers in grid layout 2026-05-19 10:41:52 +02:00
hit-test-border-radius.html LibWeb: Use retained data for hit testing 2026-05-30 13:50:48 +02:00
html-form-controls-collection.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
html-parser-duplicate-attributes.html LibWeb: Deduplicate attributes when emitting start and end tags 2024-10-01 11:04:28 +02:00
html-parser-text-in-table-hoisting.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
htmlcollection-property-set-existing.html LibWeb: PlatformObject::DefineOwnProperty fix 'has own property' check 2024-12-20 15:10:24 +01:00
HTMLInputElement-edit-value.html LibWeb: Allow keyboard input to alter email inputs 2024-12-30 11:04:16 +01:00
HTMLLinkElement-disabled.html LibWeb: Unset stylesheet properties when removing from a StyleSheetList 2024-04-16 07:41:33 +02:00
HTMLLinkElement-explicitly-enabled-alternative-stylesheets.html LibWeb: Support loading alternative style sheets 2024-04-17 07:12:44 +02:00
htmlscript-src-reflection.html LibWeb: Make HTMLScriptElement.src getter resolve to absolute URL 2025-10-07 21:52:06 +02:00
http-non-ascii-content-type.html Tests: Add explicit UTF-8 charset declarations to existing tests 2026-05-23 11:57:33 +02:00
http-reason-phrase-propagation.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
idl-handling-of-null-attribute.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
iframe-click-after-parent-scroll.html Tests: Fix race condition in iframe-click-after-parent-scroll test 2026-03-10 11:40:02 +01:00
iframe-load-event-for-xml-src.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
iframe-removed-asyncronously.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
iframe-viewport-font-properties.html LibWeb: Use correct viewport units for font properties in iframe root el 2026-03-31 10:06:18 +02:00
image-decode-resolves-after-state-is-completely-available.html LibWeb: Wait for CompletelyAvailable state before resolving img.decode() 2026-04-24 19:27:26 +02:00
include.js LibWeb: Transfer animation ownership to AnimatedBitmapDecodedImageData 2026-06-18 10:44:25 +02:00
indexeddb-abort-in-success-with-queued-requests.html LibWeb: Skip IDB request processing/completion when aborted 2026-03-05 17:12:55 -06:00
indexeddb-abort-in-success.html LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-abort-upgrade-reverts-handle-names.html LibWeb: Implement IndexedDB request/transaction reverts 2026-03-20 23:59:35 -05:00
indexeddb-close-during-upgrade-event-ordering.html LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-close-waits-for-transaction.html LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-commit-error-event-order.html Tests: Delete the database when indexeddb-commit-error-event-order ends 2026-04-08 03:03:38 +02:00
indexeddb-commit-event-ordering.html LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-commit-prevents-new-requests.html LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-concurrent-open-event-ordering.html LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-delete-close-event-ordering.html LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-empty-transaction-autocommit.html LibWeb: Autocommit IDB transactions with no requests during cleanup 2026-03-05 17:12:55 -06:00
indexeddb-empty-transaction-ordering.html LibWeb: Autocommit IDB transactions with no requests during cleanup 2026-03-05 17:12:55 -06:00
indexeddb-gc-closes-unreachable-connection.html LibWeb: Open waiting IDB connections when the previous one is GCed 2026-04-08 03:03:38 +02:00
indexeddb-index-record-ordering.html LibWeb: Insert IndexedDB index records in sorted order 2026-05-11 11:01:46 +02:00
indexeddb-objectstore-handle-identity-after-delete-recreate.html LibWeb: Reuse IDBObjectStore instances in IDBTransaction.objectStore 2026-03-20 23:59:35 -05:00
indexeddb-queued-delete-after-open.html LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-result-after-abort-in-upgradeneeded.html LibWeb: Don't set a transaction request's error until after JS finishes 2026-03-05 17:12:55 -06:00
indexeddb-transaction-scheduling.html LibWeb: Implement IndexedDB transaction dependency ordering 2026-03-05 17:12:55 -06:00
indexeddb-upgrade-close-event-ordering.html LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-upgrade-multiple-connections-close-ordering.html LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
input-appearance-none-flex-intrinsic-width.html LibWeb: Size appearance-none text inputs for max-content 2026-05-20 22:31:38 +02:00
input-bad-input-validity.html LibWeb: Implement suffering from bad input for input elements 2026-06-08 19:28:37 +02:00
input-blur.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
input-click-to-unfocus.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
input-commit-on-unfocus.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
input-commit.html LibWeb: Do not insert "return" key presses into input element values 2025-03-22 17:27:45 +01:00
input-date.html LibWeb: Restore flags to prevent formatting timestamps as local time 2025-06-25 23:41:04 +02:00
input-delete.html Tests: Add explicit UTF-8 charset declarations to existing tests 2026-05-23 11:57:33 +02:00
input-element-file-value.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
input-event-data.html LibWeb: Populate the data property for input events 2026-01-31 13:30:33 +01:00
input-event-inputType.html LibWeb: Send InputEvent with right .inputType on insert and delete 2026-01-29 15:08:06 +01:00
input-file-accept.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
input-file.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
input-image.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
input-maxlength.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
input-method-insert-text.html LibWeb+UI/AppKit: Implement macOS IME support 2026-06-08 10:23:14 +09:00
input-number-float.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
input-number-typing-fractional.html Tests: Add a test for typing a fraction in a number input 2026-06-05 12:49:24 +02:00
input-number.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
input-range-drag-fractional-value.html Tests: Add a test for mouse clicks on range inputs with step specified 2026-06-03 21:26:53 -05:00
input-readonly.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
input-scroll-cursor-into-view.html LibWeb: Do not scroll cursor into view on programmatic selection changes 2026-02-17 10:24:00 +01:00
input-scrolled-hit-test.html LibWeb: Apply AVC for descendants when hit testing fragments 2026-02-11 11:04:53 +01:00
input-select-on-tab-focus.html LibWeb: Select contents of <input> when tabbing through fields 2026-02-11 11:17:27 +01:00
input-time-typing.html Tests: Add a test for typing a fraction in a number input 2026-06-05 12:49:24 +02:00
input-validity-style-invalidation.html LibWeb: Invalidate style when form control validity changes 2026-06-08 19:28:37 +02:00
input-value-does-not-force-layout.html Tests/LibWeb: Test performance with relative timing rather than absolute 2026-03-18 13:53:42 -05:00
input-value.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
input-week.html AK/Time+LibWeb/HTML: Fix ISO8601 week conversions 2025-08-14 11:05:28 -04:00
internals.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
interpolate-alpha-premultiplied.html LibWeb: Fix color interpolation by premultiplying alpha 2025-08-14 11:09:05 +02:00
interpolation-longhand-properties.html LibWeb: Handle interpolation of BorderRadius style value type 2025-09-14 16:49:20 +01:00
intersection-observer-visual-viewport-geometry.html LibWeb: Keep pinch zoom out of client rects 2026-06-16 02:03:59 +02:00
intersection-observer-visual-viewport-root.html LibWeb: Keep pinch zoom out of client rects 2026-06-16 02:03:59 +02:00
invalid-transform-interpolation-does-not-crash.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
invalid-transform-origin.html LibWeb: Don't crash with invalid transform-origin values 2025-07-01 14:19:10 +01:00
invalidate-style-of-element-with-placeholder-shown-used-on-nested-element.html LibWeb: Add missing handler in affected_by_invalidation_property() 2025-01-26 00:52:38 +01:00
invlidate-properties-with-relative-units-in-inherited-style-update.html LibWeb: Recompute relative units in Element::recompute_inherited_style() 2025-01-26 23:10:58 +01:00
is-collapsed.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
iterating-over-storage.html LibWeb: Fix infinite loop in Storage::internal_own_property_keys 2024-10-25 12:42:29 +02:00
js-export-rename-helper.js LibJS: Fix mix-up when re-exporting an imported symbol with a new name 2024-09-02 17:14:21 +02:00
js-export-rename-module.js LibJS: Fix mix-up when re-exporting an imported symbol with a new name 2024-09-02 17:14:21 +02:00
js-export-rename.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
keyboard-scroll-cursor-into-view.html LibWeb: Do not scroll cursor into view on programmatic selection changes 2026-02-17 10:24:00 +01:00
link-changed-rel.html LibWeb: Only reload link on rel change if it became a stylesheet 2025-01-20 18:21:20 +01:00
link-element-media-attribute.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
link-element-media-change-off.html LibWeb: Convert some sync tests to be async 2024-10-03 07:07:28 -04:00
link-element-media-change.html LibWeb: Convert some sync tests to be async 2024-10-03 07:07:28 -04:00
link-element-onload-attribute.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
link-element-rel-preload-load-event.html Tests: Make preload link load/error event test order-independent 2025-11-20 06:29:13 -05:00
link-element-search.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
link-re-enable-crash.html LibWeb: Implement more of the "script-blocking style sheet" mechanism 2025-04-20 14:54:21 +02:00
link_as.html LibWeb: Added HTMLLinkElement.as Tests 2024-06-13 07:58:11 +02:00
load-event-delayed-by-adopted-style-sheet-background-image.html Tests/LibWeb: Support absolute paths for WPT files in HTTP test server 2026-03-23 22:32:43 +01:00
load-event-delayed-by-adopted-style-sheet-background-image.html.headers LibWeb: Start fetching CSS image resources before document load event 2026-03-21 10:29:54 +01:00
load-event-delayed-by-css-background-image.html Tests/LibWeb: Support absolute paths for WPT files in HTTP test server 2026-03-23 22:32:43 +01:00
load-event-delayed-by-css-background-image.html.headers LibWeb: Start fetching CSS image resources before document load event 2026-03-21 10:29:54 +01:00
load-event-fires-with-unused-font-face.html LibWeb/CSS: Don't track @font-face rules as critical subresources 2026-04-28 00:15:30 +02:00
load-event-fires-with-unused-font-face.html.headers LibWeb/CSS: Don't track @font-face rules as critical subresources 2026-04-28 00:15:30 +02:00
localStorage.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
math-with-inline-child.html LibWeb: Layout all math elements using InternalDummy context 2024-10-16 19:51:36 +02:00
meta-color-scheme-invalidates-style.html LibWeb: Update canvas colors for color-scheme changes 2026-05-27 20:57:38 +02:00
module-script-in-head.html LibWeb: Rename internals.signalTextTestIsDone() to signalTestIsDone() 2025-03-18 20:09:46 +01:00
multi-click-user-select-none-element.html LibWeb: Don't select text when multi-clicking user-select:none node 2026-02-16 15:57:55 +01:00
namespace-attribute-changed.html LibWeb: Skip namespaced attributes in Element::attribute_changed() 2025-11-24 09:13:26 +01:00
namespace-object-prototype.html IDLGenerators: Set namespace object prototype to Object.prototype 2024-04-26 20:02:42 +02:00
namespace-objects-default-property-attributes.html LibWeb: Make namespace attributes writable and configurable by default 2025-02-07 15:36:02 +01:00
nested-import-load-events.html LibWeb/CSS: Wait for resources to load to fire <style> load event 2026-02-12 16:23:12 +01:00
no-window-resize-on-load.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
non-html-mixed-case-element-name-selector-matching.html Tests: Add explicit UTF-8 charset declarations to existing tests 2026-05-23 11:57:33 +02:00
object-with-unsupported-type-in-data-attribute.html LibWeb: Use Fetch to retrieve HTMLObjectElement data URLs 2024-12-10 10:37:01 -08:00
output-value.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
overflow-with-zero-sized-box.html LibWeb: Avoid division by zero when calculating scrollbar rect 2024-03-17 12:54:02 +01:00
parse-document-from-string-in-fetch-callback.html LibWeb: Add test when networking task is interrupted by networking task 2024-04-13 12:07:33 +02:00
performance-navigation.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
performance-now.html LibWeb: Report performance based timestamps relative to ESO time origin 2025-01-27 14:53:33 +01:00
performance-timing-and-navigation-not-exposed-outside-of-window.html LibWeb: Only expose performance.{timing,navigation} on Window 2025-07-25 11:46:58 +02:00
pinch-synthesizes-ctrl-wheel-event.html LibWeb+UI: Synthesize ctrl-wheel events for pinches 2026-05-27 12:53:08 +02:00
position-absolute-float-none.html LibWeb: Compute float to none for absolutely positioned elements 2026-03-21 21:42:44 -05:00
position-serialization.html LibWeb: Coordinate border-* longhands at compute time 2025-12-08 11:46:50 +00:00
ProcessingInstruction-cloneNode.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
query-scroll-size-of-inline-node.html LibWeb: Add missing check if scrollable overflow defined for paintable 2024-10-21 15:57:19 +02:00
quirks-mode-case-insensitive-class-selector.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
radio-button-focus-lost-no-change-event.html LibWeb: Stop radio buttons firing change events when losing focus 2024-11-22 13:58:36 +00:00
radio-node-list.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
recompute-inherited-style-of-display-none-descendant.html Tests/LibWeb: Add regression test for stale inherited style 2026-04-21 18:39:00 +02:00
request-animation-frame-order.html LibWeb: Make request-animation-frame-order test async 2024-03-30 19:26:58 +01:00
reset-input-element.html LibWeb: Implement activation behavior on input[type=reset] 2024-10-11 07:40:49 +01:00
reset-text-shadow-after-unhover.html LibWeb: Rework Internals' mouse control 2026-02-06 14:18:10 +00:00
resize-scrollable-box.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
resolve-css-overflow-effective-value.html LibWeb: Resolve effective overflow-x and overflow-y according to spec 2024-02-06 08:39:06 +01:00
sameobject-behavior-for-htmlcollection-properties.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
screen-is-extended.html LibWeb: Implement Screen.isExtended attribute 2026-01-16 20:34:58 +01:00
script-src-set-after-insertion.html LibWeb: Prepare script when src is set the first time 2024-07-09 20:30:27 +01:00
script-src-set-after-insertion.js LibWeb: Prepare script when src is set the first time 2024-07-09 20:30:27 +01:00
scripted-dom-insertion-during-html-parse.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
scroll-by-dispatching-wheel-event-on-overflow-scroll-without-scrollable-overflow.html LibWeb: Fix unnecessary wheel event consumption with overflow: scroll 2025-01-31 00:11:34 +01:00
scroll-during-page-load.html LibWeb: Respect scroll position set by script during page load 2025-03-10 17:14:13 +01:00
scroll-into-view-center.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
scroll-into-view-end.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
scroll-into-view-start.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
scroll-left-and-top-on-colgroup.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
scroll-to-fragment.html LibWeb: Scroll to the "start" in Document::scroll_to_fragment() 2023-12-19 20:59:52 +01:00
scroll-window-using-wheel-event.html LibWeb: Ignore mousewheel events in ViewportPaintable 2024-04-18 12:27:24 +02:00
scroll-with-pinch-zoom-applied.html LibWeb: Fix scroll regression when pinch-to-zoom is applied 2026-01-23 17:52:50 +01:00
scrollable-overflow-clipped-child-axis.html LibWeb: Add scrollable overflow padding per axis 2026-05-17 14:19:36 +02:00
scrollable-overflow-negative-start-padding.html LibWeb: Add scrollable overflow padding per axis 2026-05-17 14:19:36 +02:00
scrollable-viewport-unreachable-overflow.html LibWeb: Implement the unreachable scrollable overflow 2025-07-11 08:23:46 +02:00
scrollable-viewport-with-position-fixed.html LibWeb: Exclude fixed positioned boxes from scrollable overflow 2025-04-25 14:07:38 +02:00
secure-context.html LibWeb/Bindings: Implement [SecureContext] extended attribute 2026-02-14 20:22:40 +01:00
select-all-respects-user-select-none.html LibWeb: Skip user-select:none when extracting selected text 2026-05-28 12:15:21 +01:00
select-options-limit.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
select-text-dialog.html LibWeb: Allow selecting text in dialog and label elements 2026-02-17 18:36:54 +01:00
select-text-label.html LibWeb: Allow selecting text in dialog and label elements 2026-02-17 18:36:54 +01:00
select-text.html LibWeb+UI: Support triple clicking and dragging paragraphs 2026-02-06 14:18:10 +00:00
select.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
selection-above-text-fragment.html LibWeb: Support hit testing fully above fragments 2026-02-11 11:04:53 +01:00
selection-auto-scroll.html LibWeb: Use correct scrollability check for autoscrolling 2026-03-24 13:55:37 +01:00
selection-collapseToEnd.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
selection-drag-above-viewport-with-same-row-sidebar.html LibWeb: Improve caret placement from retained hit-test data 2026-05-30 13:50:48 +02:00
selection-drag-above-viewport.html LibWeb: Improve caret placement from retained hit-test data 2026-05-30 13:50:48 +02:00
selection-drag-across-display-contents.html LibWeb: Fix a crash when selecting across an element with no layout box 2026-06-14 17:40:21 +02:00
selection-drag-across-image-and-heading.html LibWeb: Use retained data for hit testing 2026-05-30 13:50:48 +02:00
selection-drag-around-message-regions.html LibWeb: Make message drag selection more eager 2026-05-30 21:36:47 +02:00
selection-drag-below-line-with-side-content.html LibWeb: Use retained data for hit testing 2026-05-30 13:50:48 +02:00
selection-drag-from-below-message-line.html LibWeb: Make message drag selection more eager 2026-05-30 21:36:47 +02:00
selection-drag-from-below-to-above-list.html LibWeb: Use retained data for hit testing 2026-05-30 13:50:48 +02:00
selection-drag-from-message-gutter.html LibWeb: Make message drag selection more eager 2026-05-30 21:36:47 +02:00
selection-drag-into-textless-overlay.html LibWeb: Improve caret placement from retained hit-test data 2026-05-30 13:50:48 +02:00
selection-drag-past-overflowing-text-and-image.html LibWeb: Improve caret placement from retained hit-test data 2026-05-30 13:50:48 +02:00
selection-drag-past-overflowing-text.html LibWeb: Improve caret placement from retained hit-test data 2026-05-30 13:50:48 +02:00
selection-drag-past-short-logo-in-row.html LibWeb: Improve caret placement from retained hit-test data 2026-05-30 13:50:48 +02:00
selection-drag-past-table-header.html LibWeb: Improve caret placement from retained hit-test data 2026-05-30 13:50:48 +02:00
selection-extend-across-siblings.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
selection-extend-backwards.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
selection-focuses-editing-host.html LibWeb: Nested editing host focus should propagate to farthest ancestor 2025-08-26 10:25:59 +02:00
selection-in-focused-editing-host.html LibWeb: Do not modify selection if editing host is already selected 2025-08-01 10:09:26 +02:00
selection-keyboard-navigation.html LibWeb: Do not update selection on uneditable contents without Shift key 2025-08-26 10:25:59 +02:00
selection-modify.html LibWeb: Prevent cursor movement when collapsing text selection 2026-03-10 02:53:27 +01:00
selection-on-rendered-text.html LibWeb: Rework Internals' mouse control 2026-02-06 14:18:10 +00:00
selection-over-multiple-code-units.html Tests: Add explicit UTF-8 charset declarations to existing tests 2026-05-23 11:57:33 +02:00
selection-rect-consistency-with-kerning.html LibWeb: Use glyph positions & widths instead of Harfbuzz for range rects 2026-03-02 17:52:47 +01:00
selection-rect-with-letter-spacing.html LibWeb: Apply letter-spacing for selection rects and grapheme bounds 2026-02-17 10:51:48 +01:00
Selection-setBaseAndExtent-without-common-root.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
selection-toString-focused-text-control-delegation.html LibWeb: Selection toString focused text control delegation 2026-01-02 18:40:05 +01:00
selectionchange-event.html LibWeb: Do not override whitespace handling for editable elements 2025-05-16 12:08:29 +01:00
selectionchange-on-textarea.html LibWeb: Fix selectionchange event dispatch on text control elements 2024-11-01 15:06:09 +01:00
serializable-and-transferable-types-can-be-posted-to-realm-where-they-have-not-been-used-before.html LibWeb: Use enum for serialization and reimplement interface exposure 2025-07-15 09:20:02 -04:00
set-selection-inside-shadow-root.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
set-timeout-with-no-active-script.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
setInterval.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
setTimeout-equal-delay-registration-order.html LibCore: Make timer firing order stable for equal deadlines 2025-09-22 12:34:32 +01:00
setTimeout.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
setting-display-none-should-nuke-subtree.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
shadow-root-adopted-style-sheets.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
shadow-root-style-sheets.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
show-non-modal-dialog.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
subtle-crypto-hkdf-salt-empty-or-none.html LibWeb: Test subtleties in HKDF 'salt' interpretation 2024-10-23 11:33:58 -06:00
svg-a-element-activation-behavior.html Tests: Explicitly wait for link activation in SVG link activation test 2026-01-15 01:22:06 +01:00
svg-abspos.html LibWeb: Fix abspos replaced element constraint equations 2026-02-19 12:56:40 +01:00
svg-relayout-foreignobject-fixed-pos.html LibWeb: Pre-populate viewport in SVG subtree relayout 2026-02-25 09:05:10 +01:00
synthetic-event-constructor-istrusted-check.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
table-cell-without-table-ancestor.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
table-wrapper-percentage-width-auto-margin-with-float.html LibWeb: Cover table wrappers in grid layout 2026-05-19 10:41:52 +02:00
test-http-test-server.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
text-insertData.html Tests: Add explicit UTF-8 charset declarations to existing tests 2026-05-23 11:57:33 +02:00
textarea-arrow-navigation-with-letter-spacing.html LibWeb: Apply letter-spacing for selection rects and grapheme bounds 2026-02-17 10:51:48 +01:00
textarea-arrow-navigation.html Tests: Add explicit UTF-8 charset declarations to existing tests 2026-05-23 11:57:33 +02:00
textarea-clear.html LibWeb: Clear textarea with empty string for WebDriver 2026-02-13 15:29:02 -05:00
textarea-home-end-navigation.html LibWeb: Move textarea Home and End by line 2026-05-20 12:26:20 +02:00
textarea-maxlength.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
textarea-placeholder-shown.html LibWeb: Support :placeholder-shown pseudo-class for textarea elements 2026-02-11 16:11:11 +01:00
textarea-readonly.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
textarea-selection-start-selection-end.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
textarea-value.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
theme-color-crash.html LibWeb: Check for missing node or invalid query in obtain_theme_color 2025-01-12 19:47:01 +00:00
title-with-meta-title.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
title.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
trusted-event.html LibWeb/HTML: Make more events trusted 2026-03-23 02:33:56 +01:00
unclosed-body-element.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
unclosed-html-element.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
usvstring-url-reflection.html LibWeb: Bring test script src reflection test back 2025-10-07 21:52:06 +02:00
valid.css LibWeb: Fire "load" and "error" events for rel=preload link loads 2023-06-06 09:06:27 +02:00
video-canceled-load.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
video-failed-load.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
video-gc.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
video-get-start-date.html LibMedia+LibWeb: Implement HTMLMediaElement.getStartDate() 2026-05-05 14:45:00 -05:00
video-remove-controls.html LibWeb: Cancel the animation frame callback in MediaControls destructor 2026-03-17 06:00:40 -05:00
viewport-auto-scroll.html LibWeb: Implement mouse auto scrolling of scrollable containers 2026-02-11 11:04:53 +01:00
viewport-scroll-after-layout-tree-invalidation.html LibWeb: Update layout before accessing paintables in viewport scroll 2026-02-25 10:18:08 +01:00
visual-viewport-horizontal-scroll-hit-test.html LibWeb: Add test for hit testing after visual viewport horizontal scroll 2026-01-31 19:20:09 +01:00
vv-resize-on-pinch-to-zoom.html LibWeb: Add a test to ensure "resize" event on VV is fired on pinch-zoom 2025-10-10 15:37:45 +02:00
WebAssembly-Memory-grow-shared-stale-view.html LibJS: Only cache TypedArray data pointers for owned buffers 2026-04-25 06:11:18 +02:00
WebAssembly-Memory-typed-array-cache-edge-cases.html Tests: Test JS typed array view cache edge cases 2026-04-30 15:39:23 +02:00
wheel-default-action-after-layout-update.html LibWeb: Recompute wheel default action target after layout updates 2026-05-14 19:41:32 +02:00
wheel-event-should-be-consumed-by-innermost-scrollable.html LibWeb: Try to dispatch wheel event on hit-testing target first 2025-10-03 19:34:20 +02:00
wheel-events-consumed-by-scrollable-should-not-be-propagated-to-body-2.html LibWeb: Let internals.wheel await async scroll adoption 2026-05-15 19:10:27 +02:00
wheel-events-consumed-by-scrollable-should-not-be-propagated-to-body.html LibWeb: Let internals.wheel await async scroll adoption 2026-05-15 19:10:27 +02:00
wheel-scroll-over-iframe-at-boundary-falls-back-to-parent.html Tests: Wait for iframe scroll range before wheel 2026-05-22 15:48:00 +02:00
wheel-scroll-over-iframe-falls-back-to-parent.html LibWeb: Let internals.wheel await async scroll adoption 2026-05-15 19:10:27 +02:00
window-event-property-setter.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
window-proxy-numeric-own-property.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
window-proxy-property-inline-cache.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
window-scroll-while-parsing.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00
window-scrollTo.html Meta: Add DOCTYPEs to most text tests 2025-03-20 11:50:49 +01:00