From bf668696de9a68bbcd6adfeaac809a475da015dc Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Wed, 2 Oct 2024 12:38:10 -0400 Subject: [PATCH] LibWeb+WebContent: Do not include DOM HTML in text test expectations For example, in the following abbreviated test HTML: some text We would have to craft the expectation file to include the "some text" segment, usually with some leading whitespace. This is a bit annoying, and makes it difficult to manually craft expectation files. So instead of comparing the expectation against the entire DOM inner text, we now send the inner text of just the
 element containing
the test output when we invoke `internals.signalTextTestIsDone`.
---
 Tests/LibWeb/Text/expected/DOM/AbortSignal-any-crash.txt  | 2 +-
 Tests/LibWeb/Text/expected/DOM/CDATASection-cloneNode.txt | 2 +-
 .../Text/expected/DOM/ChildNode-after-next-sibling.txt    | 2 +-
 .../expected/DOM/ChildNode-before-previous-sibling.txt    | 2 +-
 .../expected/DOM/DOMImplementation-createHTMLDocument.txt | 2 +-
 .../Text/expected/DOM/Document-named-properties.txt       | 2 +-
 Tests/LibWeb/Text/expected/DOM/Element-classList.txt      | 2 +-
 Tests/LibWeb/Text/expected/DOM/Element-closest.txt        | 2 +-
 Tests/LibWeb/Text/expected/DOM/Element-from-point-2.txt   | 2 +-
 Tests/LibWeb/Text/expected/DOM/Element-from-point.txt     | 2 +-
 Tests/LibWeb/Text/expected/DOM/Element-getAttributeNS.txt | 2 +-
 .../Text/expected/DOM/Element-getAttributeNodeNS.txt      | 2 +-
 .../Text/expected/DOM/Element-removeAttributeNS.txt       | 2 +-
 .../LibWeb/Text/expected/DOM/Element-set-scroll-left.txt  | 2 +-
 Tests/LibWeb/Text/expected/DOM/Elements-from-point-2.txt  | 2 +-
 Tests/LibWeb/Text/expected/DOM/Elements-from-point-3.txt  | 2 +-
 Tests/LibWeb/Text/expected/DOM/Elements-from-point.txt    | 2 +-
 .../DOM/FormAssociatedElement-selection-type-change.txt   | 2 +-
 .../Text/expected/DOM/FormAssociatedElement-selection.txt | 3 +--
 .../expected/DOM/FormAssociatedElement-setRangeText.txt   | 2 +-
 .../DOM/HTMLCollection-empty-string-as-property-name.txt  | 2 +-
 Tests/LibWeb/Text/expected/DOM/HTMLCollection-order.txt   | 2 +-
 Tests/LibWeb/Text/expected/DOM/Node-isEqualNode.txt       | 2 +-
 .../LibWeb/Text/expected/DOM/Node-lookupNamespaceURI.txt  | 2 +-
 Tests/LibWeb/Text/expected/DOM/Node-lookupPrefix.txt      | 2 +-
 Tests/LibWeb/Text/expected/DOM/Node-normalize.txt         | 2 +-
 .../Text/expected/DOM/Offset-of-empty-inline-element.txt  | 2 +-
 Tests/LibWeb/Text/expected/DOM/Range-to-string.txt        | 1 -
 Tests/LibWeb/Text/expected/DOM/Text-wholeText.txt         | 2 +-
 .../Text/expected/DOM/cloneNode-with-goofy-attribute.txt  | 2 +-
 Tests/LibWeb/Text/expected/DOM/element-scroll-height.txt  | 2 +-
 Tests/LibWeb/Text/expected/DOM/element-scroll-width.txt   | 2 +-
 .../Text/expected/DOM/getElementById-empty-string.txt     | 2 +-
 .../LibWeb/Text/expected/DOM/getElementById-multiple.txt  | 2 +-
 .../expected/DOM/getElementsByClassName-empty-string.txt  | 2 +-
 .../Text/expected/DOM/getElementsByClassName-multiple.txt | 2 +-
 .../Text/expected/DOM/getElementsName-empty-string.txt    | 2 +-
 .../DOM/range-bounding-client-rect-with-nested-text.txt   | 2 +-
 Tests/LibWeb/Text/expected/DOM/range-get-client-rects.txt | 4 ++--
 .../expected/DOM/update-live-ranges-on-node-insertion.txt | 2 +-
 .../Text/expected/Editing/execCommand-is-a-noop.txt       | 2 +-
 .../Element-scrollby-negative-scroll-offset-crash.txt     | 2 +-
 .../expected/Element-toggleAttribute-invalid-name.txt     | 2 +-
 .../LibWeb/Text/expected/HTML/Element-checkVisibility.txt | 4 ++--
 .../Text/expected/HTML/Form-indexed-property-access.txt   | 2 +-
 .../Text/expected/HTML/Form-named-property-access.txt     | 2 +-
 .../expected/HTML/FormData-append-with-emoji-in-name.txt  | 2 +-
 .../LibWeb/Text/expected/HTML/HTMLAllCollection-basic.txt | 2 +-
 Tests/LibWeb/Text/expected/HTML/HTMLElement-click.txt     | 2 +-
 .../Text/expected/HTML/HTMLElement-isContentEditable.txt  | 2 +-
 .../expected/HTML/HTMLElement-offsetFoo-in-table-cell.txt | 1 -
 .../LibWeb/Text/expected/HTML/HTMLFormElement-action.txt  | 2 +-
 .../Text/expected/HTML/HTMLInputElement-cloning-steps.txt | 2 +-
 .../HTML/HTMLInputElement-invalid-time-digits.txt         | 2 +-
 .../Text/expected/HTML/HTMLInputElement-valueAsNumber.txt | 2 +-
 Tests/LibWeb/Text/expected/HTML/HTMLLabelElement-form.txt | 2 +-
 .../LibWeb/Text/expected/HTML/HTMLOptionElement-form.txt  | 2 +-
 .../Text/expected/HTML/HTMLProgressElement-detached.txt   | 2 +-
 .../HTML/HTMLSelectElement-can-select-option-in-JS.txt    | 2 +-
 .../HTMLSelectElement-options-available-after-add.txt     | 2 +-
 .../HTML/HTMLSelectElement-options-available-at-load.txt  | 2 +-
 .../HTML/HTMLSelectElement-with-detached-option.txt       | 2 +-
 .../expected/HTML/HTMLTextAreaElement-cloning-steps.txt   | 2 +-
 .../expected/HTML/HTMLTrackElement-kind-attribute.txt     | 2 +-
 .../HTML/StructuredClone-serializable-FileList.txt        | 2 +-
 Tests/LibWeb/Text/expected/HTML/Window-find.txt           | 2 +-
 .../Text/expected/HTML/Window-iterate-properties.txt      | 2 +-
 .../expected/HTML/Window-named-properties-elements.txt    | 2 +-
 .../Text/expected/HTML/Window-named-properties-iframe.txt | 2 +-
 Tests/LibWeb/Text/expected/HTML/Window-opener.txt         | 2 +-
 Tests/LibWeb/Text/expected/HTML/Window-postMessage.txt    | 2 +-
 ...dowProxy-Get-after-detaching-from-browsing-context.txt | 2 +-
 .../Text/expected/HTML/a-element-set-protocol-on-href.txt | 2 +-
 .../HTML/anchor-element-url-invalid-unicode-pathname.txt  | 2 +-
 .../expected/HTML/click-label-to-focus-text-input.txt     | 2 +-
 .../HTML/click-label-with-display-none-checkbox.txt       | 2 +-
 .../Text/expected/HTML/cross-origin-window-properties.txt | 2 +-
 .../HTML/custom-elements-throw-in-constructor.txt         | 2 +-
 .../Text/expected/HTML/dir-slot-auto-directionality.txt   | 2 +-
 .../HTML/document-write-flush-character-insertions.txt    | 2 +-
 Tests/LibWeb/Text/expected/HTML/drag-and-drop.txt         | 2 +-
 Tests/LibWeb/Text/expected/HTML/form-element-enctype.txt  | 2 +-
 Tests/LibWeb/Text/expected/HTML/form-image-submission.txt | 2 +-
 .../Text/expected/HTML/form-implicit-submission.txt       | 2 +-
 Tests/LibWeb/Text/expected/HTML/formAction-attribute.txt  | 2 +-
 Tests/LibWeb/Text/expected/HTML/get-innerHTML.txt         | 2 +-
 .../Text/expected/HTML/iframe-load-event-for-bad-xml.txt  | 2 +-
 .../HTML/iframe-reload-on-src-or-srcdoc-change.txt        | 2 +-
 .../link-element-username-password-percent-encoded.txt    | 2 +-
 .../Text/expected/HTML/maxed-out-dimension-value.txt      | 2 +-
 Tests/LibWeb/Text/expected/HTML/outerHTML.txt             | 2 +-
 Tests/LibWeb/Text/expected/HTML/set-innerHTML-details.txt | 2 +-
 Tests/LibWeb/Text/expected/HTML/set-innerHTML-input.txt   | 2 +-
 .../HTML/set-innerHTML-inside-iframe-srcdoc-document.txt  | 2 +-
 .../LibWeb/Text/expected/HTML/set-innerHTML-textarea.txt  | 2 +-
 .../Text/expected/HTML/set-innerHTML-with-script.txt      | 2 +-
 Tests/LibWeb/Text/expected/HTML/set-outerHTML.txt         | 1 -
 .../Text/expected/HTML/short-legacy-color-value.txt       | 2 +-
 .../expected/HTML/submit-button-click-when-disabled.txt   | 2 +-
 Tests/LibWeb/Text/expected/HTML/tbody-insert-row.txt      | 2 +-
 ...-root-after-originating-iframe-is-removed-from-dom.txt | 2 +-
 ...erve-box-inside-container-with-scrollable-overflow.txt | 2 +-
 .../unobserve-element-without-matching-observe.txt        | 2 +-
 .../Text/expected/MutationObserver/removing-a-node.txt    | 2 +-
 Tests/LibWeb/Text/expected/ResizeObserver/disconnect.txt  | 2 +-
 .../expected/ResizeObserver/notify-if-node-is-removed.txt | 2 +-
 .../ResizeObserver/notify-if-parent-is-removed.txt        | 2 +-
 .../Text/expected/ResizeObserver/observe-border-box.txt   | 2 +-
 Tests/LibWeb/Text/expected/ResizeObserver/observe.txt     | 2 +-
 Tests/LibWeb/Text/expected/ResizeObserver/unobserve.txt   | 2 +-
 .../expected/SVG/getBBox-outermost-svg-element-crash.txt  | 2 +-
 .../Text/expected/SVG/gradient-with-reference-cycle.txt   | 2 +-
 .../LibWeb/Text/expected/SVG/svg-className-attribute.txt  | 2 +-
 .../SVG/svg-getbbox-transform-with-no-inverse.txt         | 2 +-
 .../LibWeb/Text/expected/SVG/svg-href-qualified-name.txt  | 2 +-
 Tests/LibWeb/Text/expected/SVG/svg-href.txt               | 2 +-
 .../Text/expected/SVG/svg-ownerSVGElement-attribute.txt   | 2 +-
 Tests/LibWeb/Text/expected/SVG/svg-script-element.txt     | 2 +-
 Tests/LibWeb/Text/expected/SVG/svg-viewBox-attribute.txt  | 2 +-
 .../LibWeb/Text/expected/SVG/svg-viewbox-zero-height.txt  | 2 +-
 .../Selection-setBaseAndExtent-without-common-root.txt    | 2 +-
 .../Text/expected/ShadowDOM/css-hover-shadow-dom.txt      | 2 +-
 .../css-variable-inheritance-across-shadow-boundary.txt   | 2 +-
 .../LibWeb/Text/expected/ShadowDOM/declarative-basic.txt  | 2 +-
 .../ShadowDOM/remove-style-element-inside-shadow-tree.txt | 2 +-
 .../replace-declarative-shadow-root-with-style-sheet.txt  | 2 +-
 ...ReadableStream-pipeTo-Writer-close-callback-called.txt | 2 +-
 .../LibWeb/Text/expected/UIEvents/MouseEvent-bubbling.txt | 2 +-
 .../LibWeb/Text/expected/UIEvents/WheelEvent-bubbling.txt | 2 +-
 Tests/LibWeb/Text/expected/UIEvents/auxevent.txt          | 2 +-
 Tests/LibWeb/Text/expected/UIEvents/mouse-events.txt      | 2 +-
 Tests/LibWeb/Text/expected/UIEvents/special-keys.txt      | 2 +-
 .../URL/set-href-with-valid-hostname-but-invalid-port.txt | 2 +-
 .../animation-effect/get-computed-timing.txt              | 2 +-
 .../WebAnimations/animation-effect/get-timing.txt         | 2 +-
 .../WebAnimations/animation-effect/update-timing.txt      | 2 +-
 .../expected/WebAnimations/animation-methods/cancel.txt   | 2 +-
 .../expected/WebAnimations/animation-methods/finish.txt   | 2 +-
 .../expected/WebAnimations/animation-methods/pause.txt    | 2 +-
 .../expected/WebAnimations/animation-methods/persist.txt  | 2 +-
 .../expected/WebAnimations/animation-methods/play.txt     | 2 +-
 .../expected/WebAnimations/animation-methods/reverse.txt  | 2 +-
 .../animation-methods/updatePlaybackRate.txt              | 2 +-
 .../WebAnimations/animation-properties/currentTime.txt    | 2 +-
 .../WebAnimations/animation-properties/effect.txt         | 2 +-
 .../WebAnimations/animation-properties/finished.txt       | 2 +-
 .../animation-properties/pending-and-ready.txt            | 2 +-
 .../WebAnimations/animation-properties/playState.txt      | 2 +-
 .../WebAnimations/animation-properties/playbackRate.txt   | 2 +-
 .../WebAnimations/animation-properties/replaceState.txt   | 2 +-
 .../WebAnimations/animation-properties/startTime.txt      | 2 +-
 .../WebAnimations/animation-properties/timeline.txt       | 2 +-
 .../Text/expected/WebAnimations/misc/animatable.txt       | 2 +-
 .../WebAnimations/misc/animate-with-mixed-percentages.txt | 2 +-
 .../Text/expected/WebAnimations/misc/animating-all.txt    | 2 +-
 .../misc/animating-unresolved-properties-crash.txt        | 2 +-
 .../WebAnimations/misc/animation-events-basic.txt         | 2 +-
 .../misc/animation-single-iteration-no-repeat.txt         | 2 +-
 .../Text/expected/WebAnimations/misc/easing-parsing.txt   | 2 +-
 .../get-animations-should-make-sure-style-is-updated.txt  | 2 +-
 .../WebAnimations/transition-unknown-property.txt         | 2 +-
 .../transitions/parse-transition-calc-duration-delay.txt  | 2 +-
 .../transitions/parse-transition-property.txt             | 2 +-
 Tests/LibWeb/Text/expected/XML/error-page.txt             | 2 +-
 .../expected/anchor-element-with-javascript-url-href.txt  | 2 +-
 Tests/LibWeb/Text/expected/aria-attribute-reflection.txt  | 2 +-
 Tests/LibWeb/Text/expected/background-position-xy.txt     | 2 +-
 Tests/LibWeb/Text/expected/base/link-element-base.txt     | 2 +-
 ...adius-div-containing-iframe-with-border-radius-svg.txt | 2 +-
 Tests/LibWeb/Text/expected/clipboard.txt                  | 2 +-
 Tests/LibWeb/Text/expected/close-non-modal-dialog.txt     | 2 +-
 .../expected/collapse-selection-inside-shadow-root.txt    | 2 +-
 Tests/LibWeb/Text/expected/cookie.txt                     | 2 +-
 Tests/LibWeb/Text/expected/createBitmap.txt               | 2 +-
 .../css/CSSConditionRule-conditionText-readonly.txt       | 2 +-
 .../Text/expected/css/CSSStyleRule-set-selectorText.txt   | 2 +-
 .../expected/css/animating-transform-with-calc-crash.txt  | 2 +-
 .../css/animating-unresolved-properties-crash.txt         | 2 +-
 .../Text/expected/css/changing-animation-name-crash.txt   | 2 +-
 Tests/LibWeb/Text/expected/css/css-hsl-with-calc.txt      | 2 +-
 Tests/LibWeb/Text/expected/css/custom-ident-parsing.txt   | 2 +-
 .../expected/css/custom-properties-from-all-layers.txt    | 2 +-
 .../expected/css/getComputedStyle-no-paintable-box.txt    | 2 +-
 .../Text/expected/css/getComputedStyle-pseudo-element.txt | 2 +-
 .../css/getComputedStyle-relative-property-values.txt     | 2 +-
 Tests/LibWeb/Text/expected/css/layer-rule.txt             | 2 +-
 Tests/LibWeb/Text/expected/css/math-depth.txt             | 2 +-
 ...e-calc-function-with-same-kind-but-fewer-arguments.txt | 2 +-
 Tests/LibWeb/Text/expected/css/revert-ignores-layers.txt  | 2 +-
 Tests/LibWeb/Text/expected/css/revert-layer.txt           | 2 +-
 .../expected/css/sending-animationcancel-event-crash.txt  | 2 +-
 .../expected/css/style-sheet-with-byte-order-mark.txt     | 2 +-
 .../text-transform-invalidation-on-media-query-change.txt | 2 +-
 Tests/LibWeb/Text/expected/css/transition-basics.txt      | 2 +-
 .../css/unknown-webkit-pseudo-element-serialization.txt   | 2 +-
 .../Text/expected/css/update-pseudo-elements-on-hover.txt | 2 +-
 .../Text/expected/document-adopted-style-sheets.txt       | 2 +-
 .../element-get-bounding-client-rect-css-transform.txt    | 2 +-
 .../element-get-bounding-client-rect-scroll-offset.txt    | 2 +-
 Tests/LibWeb/Text/expected/element-get-client-rects.txt   | 2 +-
 Tests/LibWeb/Text/expected/element-scroll-event.txt       | 2 +-
 Tests/LibWeb/Text/expected/element-scrollby-event.txt     | 8 +-------
 .../failed-img-should-not-delay-load-event-forever.txt    | 2 +-
 Tests/LibWeb/Text/expected/focus-contenteditable.txt      | 2 +-
 Tests/LibWeb/Text/expected/focus-events.txt               | 2 +-
 Tests/LibWeb/Text/expected/form-method-dialog.txt         | 2 +-
 Tests/LibWeb/Text/expected/form-requestSubmit.txt         | 2 +-
 .../expected/get-bounding-client-rect-display-none.txt    | 3 +--
 Tests/LibWeb/Text/expected/get-bounding-client-rect.txt   | 2 +-
 .../getComputedStyle-grid-template-rows-columns.txt       | 2 +-
 Tests/LibWeb/Text/expected/hit_testing/basic.txt          | 2 +-
 ...box-outside-of-abspos-containing-block-border-rect.txt | 2 +-
 Tests/LibWeb/Text/expected/hit_testing/button.txt         | 2 +-
 .../click-outside-of-box-with-hidden-overflow.txt         | 2 +-
 ...lick-outside-of-box-with-lines-and-hidden-overflow.txt | 2 +-
 .../hit_testing/float-with-inline-sibling-after.txt       | 2 +-
 Tests/LibWeb/Text/expected/hit_testing/grid.txt           | 2 +-
 .../hit-testing-an-xml-svg-should-not-crash.txt           | 1 -
 .../Text/expected/hit_testing/inline-stacking-context.txt | 2 +-
 .../expected/hit_testing/nested-inline-paintables.txt     | 2 +-
 .../hit_testing/open-details-by-clicking-on-triangle.txt  | 2 +-
 .../overflow-hidden-wrapped-into-css-translate.txt        | 2 +-
 .../LibWeb/Text/expected/hit_testing/overflow-scroll.txt  | 2 +-
 .../hit_testing/positioned-z-index-0-and-floats.txt       | 2 +-
 .../stacking-context-inside-scrollable-box.txt            | 2 +-
 Tests/LibWeb/Text/expected/hit_testing/svg-path.txt       | 2 +-
 Tests/LibWeb/Text/expected/hit_testing/text.txt           | 2 +-
 .../Text/expected/html-form-controls-collection.txt       | 2 +-
 .../Text/expected/html-parser-duplicate-attributes.txt    | 2 +-
 .../Text/expected/iframe-load-event-for-xml-src.txt       | 2 +-
 Tests/LibWeb/Text/expected/input-blur.txt                 | 2 +-
 Tests/LibWeb/Text/expected/input-click-to-unfocus.txt     | 2 +-
 Tests/LibWeb/Text/expected/input-commit-on-unfocus.txt    | 2 +-
 Tests/LibWeb/Text/expected/input-commit.txt               | 2 +-
 Tests/LibWeb/Text/expected/input-file-accept.txt          | 2 +-
 Tests/LibWeb/Text/expected/input-file.txt                 | 2 +-
 Tests/LibWeb/Text/expected/input-maxlength.txt            | 2 +-
 Tests/LibWeb/Text/expected/input-readonly.txt             | 1 -
 Tests/LibWeb/Text/expected/input-value.txt                | 2 +-
 .../Text/expected/interpolation-longhand-properties.txt   | 3 ++-
 .../invalid-transform-interpolation-does-not-crash.txt    | 2 +-
 .../Text/expected/link-element-media-change-off.txt       | 2 +-
 Tests/LibWeb/Text/expected/link-element-media-change.txt  | 2 +-
 Tests/LibWeb/Text/expected/link-element-search.txt        | 2 +-
 .../attempt-navigating-object-without-a-document.txt      | 2 +-
 .../LibWeb/Text/expected/navigation/hashchange-event.txt  | 2 +-
 .../Text/expected/navigation/history-popstate-event.txt   | 2 +-
 .../LibWeb/Text/expected/navigation/history-pushstate.txt | 2 +-
 .../navigation/iframe-navigate-javascript-url.txt         | 2 +-
 .../Text/expected/navigation/iframe-navigate-src.txt      | 2 +-
 .../Text/expected/navigation/iframe-navigate-srcdoc.txt   | 2 +-
 .../Text/expected/navigation/iframe-unloading-order.txt   | 2 +-
 .../Text/expected/navigation/navigation-navigate.txt      | 2 +-
 .../navigation/populate-iframe-using-document-write.txt   | 2 +-
 .../navigation/remove-iframe-from-timeout-callback.txt    | 1 -
 .../run-script-before-iframe-initial-navigation.txt       | 2 +-
 .../navigation/run-script-from-about-blank-iframe.txt     | 2 +-
 .../parse-document-from-string-in-fetch-callback.txt      | 3 ++-
 .../quirks-mode-case-insensitive-class-selector.txt       | 2 +-
 Tests/LibWeb/Text/expected/radio-node-list.txt            | 2 +-
 .../Text/expected/request-animation-frame-order.txt       | 2 +-
 Tests/LibWeb/Text/expected/resize-scrollable-box.txt      | 2 +-
 .../expected/resolve-css-overflow-effective-value.txt     | 2 +-
 .../sameobject-behavior-for-htmlcollection-properties.txt | 2 +-
 Tests/LibWeb/Text/expected/scroll-into-view-center.txt    | 2 +-
 Tests/LibWeb/Text/expected/scroll-into-view-end.txt       | 2 +-
 Tests/LibWeb/Text/expected/scroll-into-view-start.txt     | 2 +-
 .../Text/expected/scroll-left-and-top-on-colgroup.txt     | 2 +-
 Tests/LibWeb/Text/expected/scroll-to-fragment.txt         | 2 +-
 .../Text/expected/scroll-window-using-wheel-event.txt     | 2 +-
 Tests/LibWeb/Text/expected/select-options-limit.txt       | 2 +-
 Tests/LibWeb/Text/expected/selectionchange-event.txt      | 4 +---
 .../Text/expected/set-selection-inside-shadow-root.txt    | 4 ++--
 .../Text/expected/shadow-root-adopted-style-sheets.txt    | 2 +-
 Tests/LibWeb/Text/expected/shadow-root-style-sheets.txt   | 2 +-
 Tests/LibWeb/Text/expected/show-non-modal-dialog.txt      | 2 +-
 .../Text/expected/table-cell-without-table-ancestor.txt   | 2 +-
 Tests/LibWeb/Text/expected/textarea-maxlength.txt         | 2 +-
 Tests/LibWeb/Text/expected/textarea-readonly.txt          | 1 -
 .../expected/textarea-selection-start-selection-end.txt   | 2 +-
 Tests/LibWeb/Text/expected/unclosed-body-element.txt      | 2 +-
 Tests/LibWeb/Text/expected/video-canceled-load.txt        | 2 +-
 Tests/LibWeb/Text/expected/video-gc.txt                   | 2 +-
 ...d-by-scrollable-should-not-be-propagated-to-body-2.txt | 2 +-
 ...med-by-scrollable-should-not-be-propagated-to-body.txt | 2 +-
 .../Text/expected/window-proxy-numeric-own-property.txt   | 2 +-
 Tests/LibWeb/Text/input/DOM/Elements-from-point-3.html    | 1 +
 Tests/LibWeb/Text/input/DOM/Range-deleteContents.html     | 1 +
 Tests/LibWeb/Text/input/DOM/Range-to-string.html          | 1 -
 .../input/Editing/input-into-empty-contenteditable.html   | 1 +
 .../input/HTML/HTMLElement-offsetFoo-in-table-cell.html   | 1 -
 .../HTML/document-write-flush-character-insertions.html   | 7 +++----
 Tests/LibWeb/Text/input/HTML/set-outerHTML.html           | 1 -
 ...-lazy-loading-not-blocked-by-img-outside-viewport.html | 2 +-
 ...root-after-originating-iframe-is-removed-from-dom.html | 2 +-
 ...-calc-function-with-same-kind-but-fewer-arguments.html | 3 ++-
 .../Text/input/css/style-sheet-with-byte-order-mark.html  | 5 +++--
 .../input/element-get-bounding-client-rect-of-sticky.html | 2 ++
 .../hit-testing-an-xml-svg-should-not-crash.svg           | 2 +-
 .../Text/input/html-parser-text-in-table-hoisting.html    | 1 +
 Tests/LibWeb/Text/input/include.js                        | 2 +-
 Tests/LibWeb/Text/input/input-maxlength.html              | 2 ++
 Tests/LibWeb/Text/input/input-readonly.html               | 2 ++
 Tests/LibWeb/Text/input/module-script-in-head.html        | 2 +-
 .../object-with-unsupported-type-in-data-attribute.html   | 4 +++-
 .../input/scripted-dom-insertion-during-html-parse.html   | 4 +++-
 Tests/LibWeb/Text/input/textarea-maxlength.html           | 2 ++
 Tests/LibWeb/Text/input/textarea-readonly.html            | 2 ++
 Userland/Libraries/LibWeb/Internals/Internals.cpp         | 4 ++--
 Userland/Libraries/LibWeb/Internals/Internals.h           | 2 +-
 Userland/Libraries/LibWeb/Internals/Internals.idl         | 2 +-
 Userland/Libraries/LibWeb/Page/Page.h                     | 2 +-
 Userland/Libraries/LibWebView/ViewImplementation.h        | 2 +-
 Userland/Libraries/LibWebView/WebContentClient.cpp        | 4 ++--
 Userland/Libraries/LibWebView/WebContentClient.h          | 2 +-
 Userland/Services/WebContent/PageClient.cpp               | 4 ++--
 Userland/Services/WebContent/PageClient.h                 | 2 +-
 Userland/Services/WebContent/WebContentClient.ipc         | 2 +-
 Userland/Utilities/headless-browser.cpp                   | 7 +++----
 319 files changed, 333 insertions(+), 333 deletions(-)

diff --git a/Tests/LibWeb/Text/expected/DOM/AbortSignal-any-crash.txt b/Tests/LibWeb/Text/expected/DOM/AbortSignal-any-crash.txt
index 47a5310842d..aaecaf93c4a 100644
--- a/Tests/LibWeb/Text/expected/DOM/AbortSignal-any-crash.txt
+++ b/Tests/LibWeb/Text/expected/DOM/AbortSignal-any-crash.txt
@@ -1 +1 @@
-PASS (didn't crash)
\ No newline at end of file
+PASS (didn't crash)
diff --git a/Tests/LibWeb/Text/expected/DOM/CDATASection-cloneNode.txt b/Tests/LibWeb/Text/expected/DOM/CDATASection-cloneNode.txt
index cb435e9906d..ff5acca22e4 100644
--- a/Tests/LibWeb/Text/expected/DOM/CDATASection-cloneNode.txt
+++ b/Tests/LibWeb/Text/expected/DOM/CDATASection-cloneNode.txt
@@ -1 +1 @@
-Cloned CDATASection node data: PASS
\ No newline at end of file
+Cloned CDATASection node data: PASS
diff --git a/Tests/LibWeb/Text/expected/DOM/ChildNode-after-next-sibling.txt b/Tests/LibWeb/Text/expected/DOM/ChildNode-after-next-sibling.txt
index 18edaa88822..e75161f84ee 100644
--- a/Tests/LibWeb/Text/expected/DOM/ChildNode-after-next-sibling.txt
+++ b/Tests/LibWeb/Text/expected/DOM/ChildNode-after-next-sibling.txt
@@ -1,4 +1,4 @@
- 
+
diff --git a/Tests/LibWeb/Text/expected/DOM/ChildNode-before-previous-sibling.txt b/Tests/LibWeb/Text/expected/DOM/ChildNode-before-previous-sibling.txt index 18edaa88822..e75161f84ee 100644 --- a/Tests/LibWeb/Text/expected/DOM/ChildNode-before-previous-sibling.txt +++ b/Tests/LibWeb/Text/expected/DOM/ChildNode-before-previous-sibling.txt @@ -1,4 +1,4 @@ -
+
diff --git a/Tests/LibWeb/Text/expected/DOM/DOMImplementation-createHTMLDocument.txt b/Tests/LibWeb/Text/expected/DOM/DOMImplementation-createHTMLDocument.txt index 6700e3c9a7b..1332457f534 100644 --- a/Tests/LibWeb/Text/expected/DOM/DOMImplementation-createHTMLDocument.txt +++ b/Tests/LibWeb/Text/expected/DOM/DOMImplementation-createHTMLDocument.txt @@ -1,4 +1,4 @@ - [object HTMLDocument] +[object HTMLDocument] true [object HTMLDocument] true diff --git a/Tests/LibWeb/Text/expected/DOM/Document-named-properties.txt b/Tests/LibWeb/Text/expected/DOM/Document-named-properties.txt index 0e2f8ffdde7..79ecf58857b 100644 --- a/Tests/LibWeb/Text/expected/DOM/Document-named-properties.txt +++ b/Tests/LibWeb/Text/expected/DOM/Document-named-properties.txt @@ -1,4 +1,4 @@ - Submit
+ document.bob === document.forms[0]: true