ladybird/Tests/LibWeb/Text/expected
Jelle Raaijmakers 1aeb080250 LibCompress: Treat LZW decoding errors as end of stream
The LZW data for both GIF and TIFF images is sometimes intentionally
missing an end-of-information (EOI) code, which technically is a
decoding error, but in practive is handled gracefully by Firefox, Safari
and Chrome for GIFs and Safari for TIFFs. Let's mirror their behavior.

The included WPT test exposes the fact that trailing garbage bytes can
also result in decoding errors. We handle this in the LZW logic rather
than in the image decoding since our LZW implementation is currently
only used by GIF and TIFF decoding. The error is logged behind the
LZW_DEBUG flag.
2026-04-29 20:28:15 +02:00
..
base LibWeb: Make a elements honor base element's target 2025-02-16 09:21:52 +01:00
Cache LibHTTP: Do not respond to Range requests with cached full responses 2026-01-10 09:02:41 -05:00
canvas LibWeb: Preserve non-ASCII characters in canvas text preparation 2026-04-25 14:54:18 +02:00
Clipboard LibWeb: Implement the ClipboardItem API 2024-12-20 15:29:18 +00:00
Compression LibWeb: Change hardcoded compression test to round trip 2025-03-19 13:46:50 +01:00
console LibJS: Set empty prototype for console object 2024-08-12 17:21:01 +01:00
ContentSecurityPolicy LibWeb: Set LinkProcessingOptions' cryptographic_nonce_metadata 2025-08-07 19:26:57 +02:00
CredentialManagement LibWeb: Implement FederatedCredential ctor and corresponding AO 2026-01-08 13:10:35 +01:00
Crypto LibCrypto: Add AES-OCB support 2026-02-27 12:03:19 +01:00
css Tests: Expand style invalidation coverage 2026-04-29 15:47:23 +02:00
css-has-invalidation LibWeb: Delay generic :has() sibling scans until sibling roots 2026-04-20 13:20:41 +02:00
CSSOMView LibWeb: Fix mouse event offset computation with nested CSS transforms 2026-01-31 16:56:05 +01:00
display_list LibWeb: Derive SVG clipPath bounds from descendants' geometry 2026-04-15 10:26:53 +01:00
DOM Tests: Add getElementById mutation and shadow-root routing tests 2026-02-21 13:56:00 +01:00
Editing LibWeb: Insert newlines for line breaks in preformatted white-space 2026-01-23 14:21:35 +01:00
Encoding AK: Replace surrogates in String::from_utf8_with_replacement_character 2025-07-06 04:30:17 +12:00
Fetch LibWeb: Add AVIF and WebP to the Accept header for images 2026-04-25 08:49:04 +02:00
FileAPI Everywhere: Fix even more typos 2025-08-27 08:48:01 +02:00
fullscreen LibWeb: Use a queue to process fullscreen request completions 2026-03-17 18:58:37 -05:00
GamepadAPI LibWeb: Add tests for Gamepad API by utilising virtual SDL3 joysticks 2025-09-01 21:10:47 +02:00
geometry LibWeb: Disallow ASF in DOMMatrix constructor 2025-09-28 17:43:25 +02:00
grid LibWeb: Use fragment extents for orthogonal inline widths 2026-04-05 00:03:22 +02:00
hit_testing LibWeb: Use local coordinates for hit testing chrome 2026-03-17 04:01:29 -05:00
HTML LibCompress: Treat LZW decoding errors as end of stream 2026-04-29 20:28:15 +02:00
html LibWeb: Block opaque origins in CSP frame-ancestors check 2026-02-21 12:30:48 +01:00
Internals LibWeb: Add dumpPaintableTree() to Internals API 2026-02-15 17:47:30 +01:00
IntersectionObserver LibWeb: Fix precision loss in CSSPixelFraction::to_float/to_double 2026-03-22 14:09:22 -05:00
Layout LibWeb: Round offsetWidth and offsetHeight 2026-04-03 14:29:44 +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 LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
navigation LibWeb: Don't strand a fresh navigation behind a sync history step 2026-04-27 17:24:13 +02:00
PerformanceObserver LibWeb: Implement Resource Timing 2025-03-06 09:00:53 -07: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+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
ServiceWorker LibWeb: Implement ServiceWorkerContainer.ready attribute 2026-01-09 23:16:36 +01:00
ShadowDOM LibWeb: Skip ::slotted matching for re-slotted slot elements 2026-04-29 04:54:11 +02:00
Streams LibWeb: Make TransferArrayBuffer zero-copy 2026-04-25 10:53:51 +02:00
SVG Tests: Convert getBBox() tests from Text to Crash tests 2026-02-27 17:14:50 +01:00
UIEvents LibWeb: Only skip labels' controls' activations on the first click 2026-03-17 04:01:29 -05: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: Fix previous style calculation for CSS transitions on pseudo 2025-07-18 21:19:37 +02:00
WebAudio LibWeb/WebAudio: Implement basic startRendering 2025-10-26 14:19:21 +01:00
WebSocket LibGC: Visit the edges of the cells that must survive garbage collection 2025-02-27 14:35:28 -05:00
Worker LibWeb: Keep worker startup reachable until script load completes 2026-04-27 18:02:49 +02:00
wpt-import LibWeb: Implement TextDecoderStream 2026-04-28 19:17:09 +02:00
XHR LibWeb: Report actual network error for failed XHRs 2026-03-22 18:58:49 +01:00
XHTML Tests: Add XHTML tests for CDATA, PIs and Comment nodes in the DOM 2025-07-19 14:56:20 +02:00
XML LibXML: Prevent auto-detection of UTF-32 encoding by libxml2 2026-01-08 10:06:40 +01:00
abortsignal-abort.txt LibWeb: Print more information about thrown DOMExceptions in the console 2024-03-20 15:18:44 -04:00
abortsignal-any.txt LibWeb: Implement AbortSignal.any() 2024-03-12 09:31:41 +01:00
abortsignal-timeout.txt LibWeb: Mark abort event as trusted before dispatching it 2024-03-12 09:31:41 +01:00
abspos-child-inside-abspos-table.txt LibWeb: Accept TableWrapper as containing block for abspos items 2025-01-21 15:24:05 +01:00
abspos-flex-aspect-ratio-definite-height.txt 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.txt LibWeb: Don't mark auto height as definite for abspos non-BFC elements 2026-04-03 14:29:44 +02:00
alert.txt LibWeb: Do not run microtasks when the event loop is paused 2025-01-19 20:47:50 +00:00
all-window-properties.txt LibWeb: Implement TextDecoderStream 2026-04-28 19:17:09 +02:00
anchor-element-covered-by-pseudoelement.txt LibWeb: Unit test for Anchor element covered by pseudo-element 2025-06-09 16:20:43 +01:00
anchor-element-with-javascript-url-href.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
anchor-parse-nested-invalid.txt LibWeb: Remove bogus discard_a_token() from CSS anchor fallback parsing 2026-04-01 19:41:46 +01:00
anchor-positioning-basic-insets.txt LibWeb: Implement CSS anchor positioning 2026-04-01 19:41:46 +01:00
anchor-positioning-duplicate-names.txt LibWeb: Implement CSS anchor positioning 2026-04-01 19:41:46 +01:00
anchor-positioning-explicit-names.txt LibWeb: Implement CSS anchor positioning 2026-04-01 19:41:46 +01:00
anchor-positioning-fallback-values.txt LibWeb: Implement CSS anchor positioning 2026-04-01 19:41:46 +01:00
anchor-positioning-inside-outside.txt LibWeb: Implement CSS anchor positioning 2026-04-01 19:41:46 +01:00
anchor-positioning-logical-sides.txt LibWeb: Implement CSS anchor positioning 2026-04-01 19:41:46 +01:00
append-child-must-update-layout-tree.txt LibWeb: Invalidate the layout tree on DOM node insertion 2023-06-06 09:06:27 +02:00
aria-level-heading-implicit-default.txt LibWeb: Derive implicit aria-level for h1–h6 from tag name 2025-10-10 17:18:02 +01:00
Attr-cloneNode.txt LibWeb/Tests: Port two DOM cloneNode() test cases to text tests 2023-08-21 13:51:12 +02:00
backdrop-receives-element-events.txt LibWeb: Dispatch pointer events to ::backdrop originating element 2025-04-09 12:10:42 +01:00
background-position-xy.txt LibWeb: Properly serialize position/edge style values 2024-12-13 11:35:38 +00:00
background-style-declaration-cssText-crash.txt LibWeb: Omit initial values from background CSS property serialization 2025-06-09 10:43:50 +01:00
basic.txt
border-radius-div-containing-iframe-with-border-radius-svg.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
cancel-of-pointerdown-or-mousedown-should-skip-focus-steps.txt LibWeb: Refactor pointer event handling/dispatch to work closer to spec 2026-03-17 04:01:29 -05:00
canvas-changed-width-attribute.txt LibWeb: Notify canvas context when width or height attribute is changed 2024-12-28 10:37:15 +01:00
checkbox-focus-lost-no-change-event.txt LibWeb: Update checkbox focus lost test 2024-11-22 13:58:36 +00:00
clamp-negative-padding-in-calc.txt 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.txt LibWeb: Do not re-target hits to fragments with user-select:none 2026-02-16 08:39:28 +01:00
clip-path-hit-testing.txt LibWeb: Integrate clip-path into AccumulatedVisualContext 2026-01-16 13:39:02 +01:00
clipboard.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
close-non-modal-dialog.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
CloseWatcher-abort-requestClose.txt LibWeb: Handle abort signal in CloseWatcher 2024-12-07 12:06:53 +00:00
CloseWatcher-already-aborted.txt LibWeb: Handle abort signal in CloseWatcher 2024-12-07 12:06:53 +00:00
CloseWatcher-fire-once.txt LibWeb: Handle abort signal in CloseWatcher 2024-12-07 12:06:53 +00:00
collapse-selection-inside-shadow-root.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
contenteditable-should-insert-into-nested-node.txt LibWeb: Put cursor in last text node when contenteditable is focused 2024-10-22 08:44:51 -04:00
cookie-file.txt Tests/LibWeb: Split cookies test into two 2026-02-21 23:00:57 +01:00
cookie-working.txt Tests/LibWeb: Split cookies test into two 2026-02-21 23:00:57 +01:00
corrupt-svg-favicon.txt LibWeb+LibXML: Make Listener::set_source(ByteString) fallible 2025-10-02 02:25:28 +02:00
createBitmap.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
css-accent-color.txt LibWeb/CSS: Absolutize color KeywordStyleValues 2026-02-05 13:48:10 +00:00
css-shadow-host-selector-matching.txt LibWeb/CSS: Test css shadow host selector matching 2024-12-04 16:19:32 +00:00
css-transform-transition-to-none-invalidation.txt LibWeb: Fix CSS transform invalidation when transitioning to none 2025-03-15 13:30:45 +01:00
CSSStyleDeclaration-custom-properties-3838.txt LibWeb: Invalidate element with CSS custom props on attribute changes 2025-03-13 19:20:37 +01:00
custom-property-from-parent.txt LibWeb/CSS: Check for matching custom properties on parent elements 2024-11-22 00:32:19 +01:00
details-inside-slot-opened.txt LibWeb/DOM: Walk the flat tree to propagate layout tree updates 2026-02-05 11:21:08 +01:00
device-pixel-ratio-media-query.txt LibWeb+WebContent: Instantly update DPI for painting and media queries 2026-02-06 09:01:26 +01:00
dialog-light-dismiss.txt LibWeb: Light dismiss dialogs on click 2025-04-28 19:41:38 -06:00
document-adopted-style-sheets.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
document-computed-mimetype.txt LibWeb: Check charset UTF-16LE/BE separately for UTF-8 conversion 2025-02-24 14:51:41 +01:00
document-scrollingElement-quirks-mode.txt LibWeb: Implement document.scrollingElement 2024-02-15 22:51:15 -05:00
document-scrollingElement.txt LibWeb: Implement document.scrollingElement 2024-02-15 22:51:15 -05:00
DOMTokenList-supports.txt LibWeb: Flesh out DOMTokenList::supports() implementation 2024-05-16 20:31:23 +02:00
double-click-password.txt 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.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
element-get-bounding-client-rect-nested-transform-origins.txt LibWeb: Use AccumulatedVisualContext in Element::get_client_rects() 2026-01-19 08:53:30 +01:00
element-get-bounding-client-rect-of-sticky.txt LibWeb: Scale font size by 1.15 for line-height: normal 2025-05-05 13:15:56 +02:00
element-get-bounding-client-rect-scroll-offset.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
element-get-client-rects.txt LibWeb: Scale font size by 1.15 for line-height: normal 2025-05-05 13:15:56 +02:00
Element-offsetParent-of-iframe.txt LibWeb: Don't crash in offset_parent() if no ancestor element found 2024-02-29 21:54:53 -05:00
element-scroll-event.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
element-scrollby-event.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
Element-scrollby-negative-scroll-offset-crash.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
Element-toggleAttribute-invalid-name.txt LibWeb: Update attribute name validation in Element.toggleAttribute 2025-06-19 11:00:53 +01:00
error-stack-must-contain-full-url.txt Tests/LibWeb: Support opaque file origins for error stack test 2026-02-21 23:00:57 +01:00
external-object.txt LibWeb: Implement External interface 2026-01-22 14:56:46 +01:00
failed-img-should-not-delay-load-event-forever.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
favicon-in-inactive-document.txt LibWeb: Skip HTMLLinkElement resource fetching for documents without BC 2024-04-25 09:31:01 +02:00
fieldset-client-dimensions.txt LibWeb: Calculate a <fieldset>'s client height correctly 2026-03-10 19:08:15 +00:00
fieldset-elements.txt LibWeb: Add fieldset elements property 2023-12-10 08:07:41 -05:00
flex-container-with-oversized-replaced-element.txt 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.txt 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.txt LibWeb: Include zero-area boxes when measuring scrollable overflow 2026-02-22 14:23:44 +01:00
focus-chain.txt LibWeb: Don't compare the focus chain's GC::Root contents by reference 2025-01-30 19:30:44 +01:00
focus-contenteditable.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
focus-events.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
focus-shouldIndicateFocus.txt LibWeb/CSS: Set border-widths to 0 at used time, not computed time 2025-12-15 21:28:19 +01:00
font-cascade-space-fallback.txt LibWeb: Verify whitespace font has the glyph in font_for_space() 2026-04-22 20:27:41 +02:00
form-formEnctype-attribute.txt LibWeb: Fixed IDL for HTMLInputElement 2024-10-21 15:41:00 -06:00
form-formMethod-attribute.txt LibWeb: Fixed IDL for HTMLInputElement 2024-10-21 15:41:00 -06:00
form-method-attribute.txt LibWeb: Use correct IDL for HTTPFormElement's method attribute 2024-10-21 15:41:00 -06:00
form-method-dialog.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
form-requestSubmit.txt LibWeb: Change printElement() to not output unnecessary space 2025-01-25 13:16:13 +00:00
get-bounding-client-rect-display-none.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
get-bounding-client-rect.txt LibWeb: Scale font size by 1.15 for line-height: normal 2025-05-05 13:15:56 +02:00
getComputedStyle-grid-template-rows-columns.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
global-performance-property.txt LibWeb: Handle scenario when Window property setter is called on global 2024-02-25 12:55:30 +01:00
grid-percentage-preferred-size-definite-area.txt LibWeb: Resolve grid item percentages against definite areas 2026-04-03 14:29:44 +02:00
hit-test-border-radius.txt LibWeb: Account for border-radius in hit testing 2026-01-22 11:30:17 +01:00
html-form-controls-collection.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
html-parser-duplicate-attributes.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
html-parser-text-in-table-hoisting.txt LibWeb: Make HTML parser flush all pending tokens in "in table text" 2023-07-03 11:50:58 +02:00
htmlcollection-property-set-existing.txt LibWeb: PlatformObject::DefineOwnProperty fix 'has own property' check 2024-12-20 15:10:24 +01:00
HTMLInputElement-edit-value.txt LibWeb: Allow keyboard input to alter email inputs 2024-12-30 11:04:16 +01:00
HTMLLinkElement-disabled.txt LibWeb: Unset stylesheet properties when removing from a StyleSheetList 2024-04-16 07:41:33 +02:00
HTMLLinkElement-explicitly-enabled-alternative-stylesheets.txt LibWeb: Support loading alternative style sheets 2024-04-17 07:12:44 +02:00
htmlscript-src-reflection.txt LibWeb: Make HTMLScriptElement.src getter resolve to absolute URL 2025-10-07 21:52:06 +02:00
http-non-ascii-content-type.txt LibWeb: Avoid re-encoding response headers 2024-12-17 13:44:10 +01:00
http-reason-phrase-propagation.txt Tests/LibWeb: Add test for propagation of custom HTTP reason phrase 2024-12-06 06:09:44 +00:00
idl-handling-of-null-attribute.txt LibWeb: Support [Reflect] on IDL String attributes that may return null 2023-09-05 20:36:09 -04:00
iframe-click-after-parent-scroll.txt LibWeb: Account for scroll offset in iframe mouse event coordinates 2026-01-19 06:22:18 +01:00
iframe-load-event-for-xml-src.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
iframe-removed-asyncronously.txt LibWeb: Do not spin the event loop on processing iframe attributes 2024-10-07 15:10:41 +02:00
iframe-viewport-font-properties.txt 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.txt LibWeb: Wait for CompletelyAvailable state before resolving img.decode() 2026-04-24 19:27:26 +02:00
indexeddb-abort-in-success-with-queued-requests.txt LibWeb: Skip IDB request processing/completion when aborted 2026-03-05 17:12:55 -06:00
indexeddb-abort-in-success.txt LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-abort-upgrade-reverts-handle-names.txt LibWeb: Implement IndexedDB request/transaction reverts 2026-03-20 23:59:35 -05:00
indexeddb-close-during-upgrade-event-ordering.txt LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-close-waits-for-transaction.txt LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-commit-error-event-order.txt LibWeb: Prevent failing IDB requests from clobbering previous ones 2026-03-20 23:59:35 -05:00
indexeddb-commit-event-ordering.txt LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-commit-prevents-new-requests.txt LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-concurrent-open-event-ordering.txt LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-delete-close-event-ordering.txt LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-empty-transaction-autocommit.txt LibWeb: Autocommit IDB transactions with no requests during cleanup 2026-03-05 17:12:55 -06:00
indexeddb-empty-transaction-ordering.txt LibWeb: Autocommit IDB transactions with no requests during cleanup 2026-03-05 17:12:55 -06:00
indexeddb-gc-closes-unreachable-connection.txt LibWeb: Open waiting IDB connections when the previous one is GCed 2026-04-08 03:03:38 +02:00
indexeddb-objectstore-handle-identity-after-delete-recreate.txt LibWeb: Reuse IDBObjectStore instances in IDBTransaction.objectStore 2026-03-20 23:59:35 -05:00
indexeddb-queued-delete-after-open.txt LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-result-after-abort-in-upgradeneeded.txt LibWeb: Don't set a transaction request's error until after JS finishes 2026-03-05 17:12:55 -06:00
indexeddb-transaction-scheduling.txt LibWeb: Implement IndexedDB transaction dependency ordering 2026-03-05 17:12:55 -06:00
indexeddb-upgrade-close-event-ordering.txt LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
indexeddb-upgrade-multiple-connections-close-ordering.txt LibWeb: Refactor IndexedDB to handle requests serially 2026-03-05 17:12:55 -06:00
input-blur.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
input-click-to-unfocus.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
input-commit-on-unfocus.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
input-commit.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
input-date.txt LibWeb: Restore flags to prevent formatting timestamps as local time 2025-06-25 23:41:04 +02:00
input-delete.txt LibWeb: Delete entire graphemes when the delete/backspace key is pressed 2025-08-14 22:21:51 +02:00
input-element-file-value.txt LibWeb: Fix empty value attribute for 'file' input returning fakepath 2023-08-26 13:51:18 +02:00
input-event-data.txt LibWeb: Populate the data property for input events 2026-01-31 13:30:33 +01:00
input-event-inputType.txt LibWeb: Send InputEvent with right .inputType on insert and delete 2026-01-29 15:08:06 +01:00
input-file-accept.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
input-file.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
input-image.txt LibWeb: Change attribute type to USVString where applicable 2024-08-17 07:45:00 +02:00
input-maxlength.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
input-number-float.txt LibWeb: Implement HTML spec-compliant rules for floating-point parsing 2024-10-30 10:47:41 +01:00
input-number.txt LibWeb: Add input stepUp and stepDown functions 2023-12-07 16:46:28 -05:00
input-readonly.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
input-scroll-cursor-into-view.txt LibWeb: Keep cursor in view for text controls 2026-02-11 11:04:53 +01:00
input-scrolled-hit-test.txt LibWeb: Apply AVC for descendants when hit testing fragments 2026-02-11 11:04:53 +01:00
input-select-on-tab-focus.txt LibWeb: Select contents of <input> when tabbing through fields 2026-02-11 11:17:27 +01:00
input-value-does-not-force-layout.txt LibWeb: Do not scroll cursor into view on programmatic selection changes 2026-02-17 10:24:00 +01:00
input-value.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
input-week.txt AK/Time+LibWeb/HTML: Fix ISO8601 week conversions 2025-08-14 11:05:28 -04:00
internals.txt LibWeb: Add a simple internals objects only available during testing 2023-08-06 15:26:34 +02:00
interpolate-alpha-premultiplied.txt LibWeb: Align color interpolation with the css-color specification 2026-04-16 12:06:10 +02:00
interpolation-longhand-properties.txt LibWeb: Align color interpolation with the css-color specification 2026-04-16 12:06:10 +02:00
invalid-transform-interpolation-does-not-crash.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
invalid-transform-origin.txt 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.txt 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.txt LibWeb: Recompute relative units in Element::recompute_inherited_style() 2025-01-26 23:10:58 +01:00
is-collapsed.txt LibWeb: Compare anchor/focus offsets in selection.isCollapsed 2024-10-12 15:00:35 +02:00
iterating-over-storage.txt LibWeb: Fix infinite loop in Storage::internal_own_property_keys 2024-10-25 12:42:29 +02:00
js-export-rename.txt LibJS: Fix mix-up when re-exporting an imported symbol with a new name 2024-09-02 17:14:21 +02:00
keyboard-scroll-cursor-into-view.txt LibWeb: Do not scroll cursor into view on programmatic selection changes 2026-02-17 10:24:00 +01:00
link-changed-rel.txt LibWeb: Only reload link on rel change if it became a stylesheet 2025-01-20 18:21:20 +01:00
link-element-media-attribute.txt LibWeb: Forward media attribute from link element to loaded style sheet 2023-06-11 06:05:03 +02:00
link-element-media-change-off.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
link-element-media-change.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
link-element-onload-attribute.txt LibWeb: Allow event handler attributes on HTMLLinkElement 2023-06-06 09:06:27 +02:00
link-element-rel-preload-load-event.txt Tests: Make preload link load/error event test order-independent 2025-11-20 06:29:13 -05:00
link-element-search.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
link-re-enable-crash.txt LibWeb: Clear stylesheet pointer when disabling link element 2025-02-01 08:11:37 +00:00
link_as.txt LibWeb: Added HTMLLinkElement.as Tests 2024-06-13 07:58:11 +02:00
load-event-delayed-by-adopted-style-sheet-background-image.txt 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.txt 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.txt LibWeb/CSS: Don't track @font-face rules as critical subresources 2026-04-28 00:15:30 +02:00
localStorage.txt LibWeb/Storage: Return undefined for non-existent key/index access 2024-10-23 11:31:47 -06:00
math-with-inline-child.txt LibWeb: Layout all math elements using InternalDummy context 2024-10-16 19:51:36 +02:00
module-script-in-head.txt LibWeb/Tests: Add test for a <script type=module> inside <head> 2023-10-31 18:09:14 +01:00
multi-click-user-select-none-element.txt LibWeb: Don't select text when multi-clicking user-select:none node 2026-02-16 15:57:55 +01:00
namespace-attribute-changed.txt LibWeb: Skip namespaced attributes in Element::attribute_changed() 2025-11-24 09:13:26 +01:00
namespace-object-prototype.txt IDLGenerators: Set namespace object prototype to Object.prototype 2024-04-26 20:02:42 +02:00
namespace-objects-default-property-attributes.txt LibWeb: Generate the "Numeric Factory" OM methods on the CSS namespace 2025-09-11 17:06:44 +01:00
nested-import-load-events.txt 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.txt LibWeb: Don't fire resize event until document actually resizes once 2024-07-10 10:27:31 +02:00
non-html-mixed-case-element-name-selector-matching.txt LibWeb: Fix selector matching for non-HTML mixed-case element names 2024-12-25 13:54:06 +00:00
object-with-unsupported-type-in-data-attribute.txt LibWeb: Implement HTMLElement.innerText closer to spec 2024-10-27 12:10:28 +01:00
output-value.txt LibWeb: Add output element value 2023-12-09 21:50:17 +01:00
overflow-with-zero-sized-box.txt LibWeb: Avoid division by zero when calculating scrollbar rect 2024-03-17 12:54:02 +01:00
parse-document-from-string-in-fetch-callback.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
performance-navigation.txt LibWeb: Add stub implementation of performance.navigation 2024-08-04 10:38:42 +02:00
performance-now.txt LibWeb: Bring performance.now() closer to spec 2024-10-31 14:10:13 +01:00
performance-timing-and-navigation-not-exposed-outside-of-window.txt LibWeb: Only expose performance.{timing,navigation} on Window 2025-07-25 11:46:58 +02:00
position-absolute-float-none.txt LibWeb: Compute float to none for absolutely positioned elements 2026-03-21 21:42:44 -05:00
position-serialization.txt LibWeb: Coordinate border-* longhands at compute time 2025-12-08 11:46:50 +00:00
ProcessingInstruction-cloneNode.txt LibWeb/Tests: Port two DOM cloneNode() test cases to text tests 2023-08-21 13:51:12 +02:00
query-scroll-size-of-inline-node.txt LibWeb: Add missing check if scrollable overflow defined for paintable 2024-10-21 15:57:19 +02:00
quirks-mode-case-insensitive-class-selector.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
radio-button-focus-lost-no-change-event.txt LibWeb: Stop radio buttons firing change events when losing focus 2024-11-22 13:58:36 +00:00
radio-node-list.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
recompute-inherited-style-of-display-none-descendant.txt LibWeb: Recompute inherited style even if there is no layout node 2026-04-21 18:39:00 +02:00
request-animation-frame-order.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
reset-input-element.txt LibWeb: Implement activation behavior on input[type=reset] 2024-10-11 07:40:49 +01:00
reset-text-shadow-after-unhover.txt LibWeb: Reset text-shadow if needed after paint-only properties update 2025-11-14 12:49:36 +01:00
resize-scrollable-box.txt LibWeb: Allow descendant boxes to contribute in overflow rect of parent 2025-07-06 17:10:18 +02:00
resolve-css-overflow-effective-value.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
sameobject-behavior-for-htmlcollection-properties.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
screen-is-extended.txt LibWeb: Implement Screen.isExtended attribute 2026-01-16 20:34:58 +01:00
script-src-set-after-insertion.txt LibWeb: Prepare script when src is set the first time 2024-07-09 20:30:27 +01:00
scripted-dom-insertion-during-html-parse.txt LibWeb+WebContent+headless-browser: Support async text tests 2023-09-15 08:52:25 +02:00
scroll-by-dispatching-wheel-event-on-overflow-scroll-without-scrollable-overflow.txt LibWeb: Fix unnecessary wheel event consumption with overflow: scroll 2025-01-31 00:11:34 +01:00
scroll-during-page-load.txt LibWeb: Respect scroll position set by script during page load 2025-03-10 17:14:13 +01:00
scroll-into-view-center.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
scroll-into-view-end.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
scroll-into-view-start.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
scroll-left-and-top-on-colgroup.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
scroll-to-fragment.txt LibWeb: Scale font size by 1.15 for line-height: normal 2025-05-05 13:15:56 +02:00
scroll-window-using-wheel-event.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
scroll-with-pinch-zoom-applied.txt LibWeb: Fix scroll regression when pinch-to-zoom is applied 2026-01-23 17:52:50 +01:00
scrollable-viewport-unreachable-overflow.txt LibWeb: Implement the unreachable scrollable overflow 2025-07-11 08:23:46 +02:00
scrollable-viewport-with-position-fixed.txt LibWeb: Scale font size by 1.15 for line-height: normal 2025-05-05 13:15:56 +02:00
secure-context.txt LibWeb/Bindings: Implement [SecureContext] extended attribute 2026-02-14 20:22:40 +01:00
select-options-limit.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
select-text-dialog.txt LibWeb: Allow selecting text in dialog and label elements 2026-02-17 18:36:54 +01:00
select-text-label.txt LibWeb: Allow selecting text in dialog and label elements 2026-02-17 18:36:54 +01:00
select-text.txt LibWeb+UI: Support triple clicking and dragging paragraphs 2026-02-06 14:18:10 +00:00
select.txt LibWeb: Limit HTMLSelectElement.size to allowed values 2024-11-29 13:30:57 +01:00
selection-above-text-fragment.txt LibWeb: Support hit testing fully above fragments 2026-02-11 11:04:53 +01:00
selection-auto-scroll.txt LibWeb: Use correct scrollability check for autoscrolling 2026-03-24 13:55:37 +01:00
selection-collapseToEnd.txt LibWeb: Use correct boundaries in Selection::collapse_to_start/end() 2024-12-21 19:15:58 +01:00
selection-extend-across-siblings.txt LibWeb: Use correct boundary point comparison in Selection.extend 2024-10-13 15:11:49 +02:00
selection-extend-backwards.txt LibWeb: Use correct boundary point comparison in Selection.extend 2024-10-13 15:11:49 +02:00
selection-focuses-editing-host.txt LibWeb: Nested editing host focus should propagate to farthest ancestor 2025-08-26 10:25:59 +02:00
selection-in-focused-editing-host.txt LibWeb: Do not modify selection if editing host is already selected 2025-08-01 10:09:26 +02:00
selection-keyboard-navigation.txt LibWeb: Do not update selection on uneditable contents without Shift key 2025-08-26 10:25:59 +02:00
selection-modify.txt LibWeb: Implement Selection.modify 2025-06-30 10:44:32 +01:00
selection-on-rendered-text.txt LibWeb: Store correct text offsets in PaintableFragment 2025-09-12 15:34:09 -04:00
selection-over-multiple-code-units.txt LibWeb: Port rendered text to UTF-16 2025-07-25 18:16:22 +02:00
selection-rect-consistency-with-kerning.txt LibWeb: Use glyph positions & widths instead of Harfbuzz for range rects 2026-03-02 17:52:47 +01:00
selection-rect-with-letter-spacing.txt LibWeb: Apply letter-spacing for selection rects and grapheme bounds 2026-02-17 10:51:48 +01:00
Selection-setBaseAndExtent-without-common-root.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
selection-toString-focused-text-control-delegation.txt LibWeb: Selection toString focused text control delegation 2026-01-02 18:40:05 +01:00
selectionchange-event.txt LibWeb: Store correct text offsets in PaintableFragment 2025-09-12 15:34:09 -04:00
selectionchange-on-textarea.txt 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.txt LibWeb: Use enum for serialization and reimplement interface exposure 2025-07-15 09:20:02 -04:00
set-selection-inside-shadow-root.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
set-timeout-with-no-active-script.txt LibWeb: Fix setTimeout() when there's no active script 2023-09-15 08:53:21 +02:00
setInterval.txt Tests/LibWeb: Add basic tests for setTimeout and setInterval 2023-09-26 19:42:59 +02:00
setTimeout-equal-delay-registration-order.txt LibCore: Make timer firing order stable for equal deadlines 2025-09-22 12:34:32 +01:00
setTimeout.txt Tests/LibWeb: Add basic tests for setTimeout and setInterval 2023-09-26 19:42:59 +02:00
setting-display-none-should-nuke-subtree.txt LibWeb: Detach stale layout nodes from DOM during layout tree build 2023-08-01 09:19:41 +02:00
shadow-root-adopted-style-sheets.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
shadow-root-style-sheets.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
show-non-modal-dialog.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
subtle-crypto-hkdf-salt-empty-or-none.txt LibWeb: Test subtleties in HKDF 'salt' interpretation 2024-10-23 11:33:58 -06:00
svg-a-element-activation-behavior.txt LibWeb/SVG: Implement activation behavior for SVGAElement 2026-01-13 10:05:40 +01:00
svg-abspos.txt LibWeb: Fix abspos replaced element constraint equations 2026-02-19 12:56:40 +01:00
svg-relayout-foreignobject-fixed-pos.txt LibWeb: Pre-populate viewport in SVG subtree relayout 2026-02-25 09:05:10 +01:00
synthetic-event-constructor-istrusted-check.txt LibWeb: Make “create an event” set the event’s isTrusted to true 2024-09-03 00:14:31 -06:00
table-cell-without-table-ancestor.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
test-http-test-server.txt LibWeb/Tests: Added example test for how to use http-test-server.py 2024-11-09 13:08:31 -07:00
text-insertData.txt LibWeb: Use UTF-16 code units length in CharacterData::replace_data() 2024-11-06 05:46:30 +00:00
textarea-arrow-navigation-with-letter-spacing.txt LibWeb: Apply letter-spacing for selection rects and grapheme bounds 2026-02-17 10:51:48 +01:00
textarea-arrow-navigation.txt LibWeb: Ensure up/down arrow navigation is grapheme-aware 2025-08-18 13:17:28 +02:00
textarea-clear.txt LibWeb: Clear textarea with empty string for WebDriver 2026-02-13 15:29:02 -05:00
textarea-maxlength.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
textarea-placeholder-shown.txt LibWeb: Support :placeholder-shown pseudo-class for textarea elements 2026-02-11 16:11:11 +01:00
textarea-readonly.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
textarea-selection-start-selection-end.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
textarea-value.txt LibWeb: Use the <textarea>'s API value, not its raw value, where needed 2024-03-16 13:11:57 +01:00
theme-color-crash.txt LibWeb: Check for missing node or invalid query in obtain_theme_color 2025-01-12 19:47:01 +00:00
title-with-meta-title.txt LibWeb: Implement Document's supported property names closer to the spec 2024-03-29 08:52:01 -04:00
title.txt LibWeb/HTML: Implement text attribute in HTMLTitleElement 2023-12-02 10:35:43 +01:00
trusted-event.txt LibWeb: Remove spin_until from check_if_unloading_is_canceled() 2026-03-28 04:17:21 +01:00
unclosed-body-element.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
unclosed-html-element.txt LibWeb: Append attributes to the correct element 2024-07-30 09:41:35 +02:00
usvstring-url-reflection.txt LibWeb: Bring test script src reflection test back 2025-10-07 21:52:06 +02:00
video-canceled-load.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
video-failed-load.txt Tests: Use .invalid TLD for invalid requests 2024-10-02 16:04:17 -04:00
video-gc.txt LibWeb: Bring back the test video for LibWeb tests 2024-10-10 17:52:58 -04:00
video-remove-controls.txt LibWeb: Cancel the animation frame callback in MediaControls destructor 2026-03-17 06:00:40 -05:00
viewport-auto-scroll.txt LibWeb: Implement mouse auto scrolling of scrollable containers 2026-02-11 11:04:53 +01:00
viewport-scroll-after-layout-tree-invalidation.txt LibWeb: Update layout before accessing paintables in viewport scroll 2026-02-25 10:18:08 +01:00
visual-viewport-horizontal-scroll-hit-test.txt LibWeb: Rebuild visual contexts after visual viewport scroll 2026-01-31 19:20:09 +01:00
vv-resize-on-pinch-to-zoom.txt 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.txt LibJS: Only cache TypedArray data pointers for owned buffers 2026-04-25 06:11:18 +02:00
wheel-event-should-be-consumed-by-innermost-scrollable.txt 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.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
wheel-events-consumed-by-scrollable-should-not-be-propagated-to-body.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
wheel-scroll-over-iframe-at-boundary-falls-back-to-parent.txt LibWeb: Chain wheel scrolling past iframe limits 2026-04-17 18:52:12 +02:00
wheel-scroll-over-iframe-falls-back-to-parent.txt LibWeb: Chain wheel scrolling past iframe limits 2026-04-17 18:52:12 +02:00
window-event-property-setter.txt LibWeb: Add special handling for WindowProxy in [Replaceable] setters 2024-02-24 08:05:55 +01:00
window-proxy-numeric-own-property.txt LibWeb+WebContent: Do not include DOM HTML in text test expectations 2024-10-03 07:07:28 -04:00
window-proxy-property-inline-cache.txt LibWeb: Don't cache property accesses on WindowProxy 2023-07-11 00:14:50 +02:00
window-scroll-while-parsing.txt LibWeb: Port some manually async tests to use asyncTest 2024-10-03 07:07:28 -04:00
window-scrollTo.txt LibWeb: Limit scroll position by overflow area in Window::scroll() 2023-12-24 23:22:35 +01:00