1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 03:34:59 +00:00
serenity/Tests/LibWeb/Text/expected
Aliaksandr Kalenik 9968c9f7a6 LibWeb: Fix hit-testing by excluding CSS transform from clip rect check
Transforms are applied to both clip rectangle and position, so we need
to remove the transform from clip rectangle before checking if position
falls within the clip rectangle.

In this change, the removal of transform is moved into
`Paintable::clip_rect()` that is shared between hit-testing and
painting.

This change fixes hit-testing in Discord's multifactor authentication
form.
2024-02-22 07:36:20 +01:00
..
canvas Tests/LibWeb: Test canvas fillStyle parsing of rgb strings 2023-11-24 08:42:18 +01:00
Crypto LibWeb: Add happy path test for SubtleCrypto importKey and digest 2024-01-23 14:07:06 -07:00
css LibWeb/CSS: Resolve value of "height" in special way according to spec 2024-02-06 08:41:21 +01:00
DOM LibWeb: Clamp scroll offset to valid range in set_scroll_offset() 2024-02-22 07:35:30 +01:00
Editing LibWeb: Stub out all the functions from the execCommand spec 2024-02-16 19:31:54 -05:00
Encoding LibWeb: Add TextEncoder encodeInto 2023-10-29 21:44:53 +01:00
FileAPI LibWeb: Bring CSS line-height closer to other engines 2024-01-12 15:04:06 +01:00
geometry LibWeb: Ensure DOMRect top, bottom, left and right handle NaN correctly 2024-02-21 19:38:17 +01:00
hit_testing LibWeb: Fix hit-testing by excluding CSS transform from clip rect check 2024-02-22 07:36:20 +01:00
HTML LibWeb: Implement HTMLInputElement's selected coordinates 2024-02-19 11:07:30 +01:00
IntersectionObserver LibWeb: Process all pending lazy loading intersection observations 2023-12-24 13:23:40 +01:00
Messaging LibWeb: Post all MessagePort messages over their LocalSockets 2023-12-20 12:25:40 -07:00
MutationObserver LibWeb: Fix null pointer dereference in DOM::Node::remove() 2023-11-20 20:50:53 +01:00
navigation Tests/LibWeb: Move LibWeb test frames to their own directory 2024-02-19 22:11:59 -05:00
PerformanceObserver LibWeb: Return milliseconds from unsafe_shared_current_time() 2024-02-11 08:10:45 +01:00
ResizeObserver LibWeb: Null layout and paintable pointers of removed DOM::Node 2024-02-20 10:55:10 +01:00
Streams LibWeb: Implement ReadableStreamBYOBRequest.respondWithNewView 2024-01-29 17:10:56 -05:00
SVG LibWeb: Add SVGSVGElement.viewBox attribute 2024-01-25 08:23:41 +01:00
UIEvents LibWeb: Add MouseEvent JavaScript constructor 2024-01-20 08:57:37 +01:00
URL AK: Properly implement steps for shortening a URLs path 2023-10-26 11:11:41 +02:00
Wasm LibWeb: Bring CSS line-height closer to other engines 2024-01-12 15:04:06 +01:00
Worker LibWeb+WebWorker: Convert Workers to use MessagePorts for postMessage 2023-12-25 12:09:11 +01:00
XHR LibWeb: Bring CSS line-height closer to other engines 2024-01-12 15:04:06 +01:00
XML LibWeb: Bring CSS line-height closer to other engines 2024-01-12 15:04:06 +01:00
abortsignal-abort.txt LibWeb: Implement AbortSignal.abort() 2024-02-21 10:34:44 +01:00
anchor-element-with-javascript-url-href.txt LibWeb: Bring CSS line-height closer to other engines 2024-01-12 15:04:06 +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
Attr-cloneNode.txt LibWeb/Tests: Port two DOM cloneNode() test cases to text tests 2023-08-21 13:51:12 +02:00
background-position-xy.txt LibWeb: Create EdgeStyleValue for BackgroundPositionXY with no offset 2023-07-17 14:53:52 +01:00
basic.txt Ladybird+Tests/LibWeb: Add very basic text-only test harness 2023-05-27 14:03:49 +02:00
clipboard.txt LibWeb: Begin implementing the Clipboard API 2023-11-11 08:54:37 +01:00
close-non-modal-dialog.txt LibWeb: Implement HTMLDialogElement::close() for non-modal dialogs 2024-02-14 22:20:44 -05:00
cookie.txt LibWeb: Convert the cookie test page to a text test 2024-01-10 23:26:40 +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
element-get-bounding-client-rect-css-transform.txt LibWeb: Account for CSS transform in Element::getClientRects() 2024-01-30 14:50:25 +01:00
element-get-client-rects.txt LibWeb: Follow the spec more precisely in Element::getClientRects() 2024-01-30 14:50:25 +01:00
failed-img-should-not-delay-load-event-forever.txt LibWeb: Fire the fail callback on SharedImageRequest when they fail 2023-08-28 10:19:46 +02:00
fieldset-elements.txt LibWeb: Add fieldset elements property 2023-12-10 08:07:41 -05:00
form-method-dialog.txt Tests/LibWeb: Verify dialog return value is correct in dialog test 2024-02-16 17:21:48 -05:00
form-requestSubmit.txt LibWeb: Implement HTMLFormElement.requestSubmit() 2024-02-16 17:21:48 -05:00
get-bounding-client-rect-display-none.txt LibWeb: Bring CSS line-height closer to other engines 2024-01-12 15:04:06 +01:00
get-bounding-client-rect.txt LibWeb: Bring CSS line-height closer to other engines 2024-01-12 15:04:06 +01:00
html-form-controls-collection.txt LibWeb: Support RadioNodeList named items in HTMLFormControlsCollection 2023-12-23 20:53:11 +01: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
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
input-blur.txt LibWeb: Focus the document element when unfocusing an element 2023-12-04 01:33:57 +01:00
input-click-to-unfocus.txt LibWeb: Run the unfocusing steps when a click does not focus anything 2023-12-04 01:33:57 +01:00
input-commit-on-unfocus.txt LibWeb: Fire a change event on input elements in the focus update steps 2023-12-04 01:33:57 +01:00
input-commit.txt LibWeb: Support committing changes to <input> elements 2023-12-02 10:34:22 +01:00
input-date.txt LibWeb: Add input element valueAsDate property 2024-01-06 09:59:30 -07: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-image.txt LibWeb: Begin implementing the HTMLInputElement 'image' type state 2024-02-19 11:07:30 +01:00
input-number.txt LibWeb: Add input stepUp and stepDown functions 2023-12-07 16:46:28 -05:00
input-value.txt LibWeb: Fully implement the HTMLInputElement value setter and getter 2024-02-18 18:44:45 +01:00
internals.txt LibWeb: Add a simple internals objects only available during testing 2023-08-06 15:26:34 +02: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-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 LibWeb: Fire "load" and "error" events for rel=preload link loads 2023-06-06 09:06:27 +02:00
link-element-search.txt LibWeb: Fix typo in query of link element search params 2023-08-14 16:26:34 +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
output-value.txt LibWeb: Add output element value 2023-12-09 21:50:17 +01:00
ProcessingInstruction-cloneNode.txt LibWeb/Tests: Port two DOM cloneNode() test cases to text tests 2023-08-21 13:51:12 +02:00
radio-node-list.txt LibWeb: Implement value attribute of RadioNodeList 2023-08-26 13:51:18 +02:00
resize-scrollable-box.txt LibWeb: Clamp scroll offset into valid range after relayout 2024-02-22 07:35:30 +01:00
resolve-css-overflow-effective-value.txt LibWeb: Resolve effective overflow-x and overflow-y according to spec 2024-02-06 08:39:06 +01:00
sameobject-behavior-for-htmlcollection-properties.txt LibWeb/Tests: Port HTMLCollection [[SameObject]] test to a text test 2023-08-21 13:51:12 +02: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-into-view-end.txt LibWeb: Bring CSS line-height closer to other engines 2024-01-12 15:04:06 +01:00
scroll-into-view-start.txt LibWeb: Bring CSS line-height closer to other engines 2024-01-12 15:04:06 +01:00
scroll-left-and-top-on-colgroup.txt LibWeb: Return a scroll offset of 0 for colgroup elements 2023-11-23 13:06:48 +01:00
scroll-to-fragment.txt LibWeb: Bring CSS line-height closer to other engines 2024-01-12 15:04:06 +01:00
select.txt Ladybird+LibWeb: Add basic select element support 2023-12-09 22:06:20 +01: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.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
show-non-modal-dialog.txt LibWeb: Implement HTMLDialogElement::show() 2024-02-14 22:20:44 -05:00
textarea-value.txt LibWeb: Add textarea value properties 2024-01-07 10:22:32 +01:00
title.txt LibWeb/HTML: Implement text attribute in HTMLTitleElement 2023-12-02 10:35:43 +01:00
url-search-params-iterator-iterator.txt LibWeb: Don't override prototype on generated iterator prototypes 2023-06-08 10:05:56 +02:00
video-failed-load.txt LibWeb: Correctly categorize Fetch responses as network errors 2024-01-18 23:10:56 +01:00
window-proxy-numeric-own-property.txt LibWeb: Implement basic support for window[number] 2023-07-25 15:45:44 +02: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: Update layout before looking at overflow in window.scroll() 2024-01-19 09:16:54 +01:00
window-scrollTo.txt LibWeb: Limit scroll position by overflow area in Window::scroll() 2023-12-24 23:22:35 +01:00