ladybird/Tests/LibWeb/Text/expected/DOM
2024-08-04 10:39:17 +02:00
..
CDATASection-assignedSlot.txt LibWeb: Don't crash when querying the CDataSection.assignedSlot property 2024-03-23 20:56:26 +01:00
CDATASection-cloneNode.txt LibWeb: Don't crash when cloning a CDATASection node 2024-07-25 15:57:21 +01:00
CharacterData-replaceData-break-surrogate-pair.txt LibWeb: Allow splitting surrogate pairs in CharacterData.replaceData() 2024-07-20 06:41:25 +02:00
ChildNode-after-next-sibling.txt LibWeb: Fix infinite loop in ChildNode's before() and after() 2024-03-11 18:29:10 +01:00
ChildNode-before-previous-sibling.txt LibWeb: Fix infinite loop in ChildNode's before() and after() 2024-03-11 18:29:10 +01:00
cloneNode-with-goofy-attribute.txt LibWeb: Allow cloneNode() to clone elements with weird attributes 2024-04-21 19:51:24 +02:00
createElement-with-emoji-in-tag-name.txt LibWeb: Don't crash on Document.createElement() with emoji in tag name 2023-12-04 00:04:04 +01:00
createEvent-hashchangeevent.txt LibWeb: Make document.createEvent("hashchangeevent") produce right type 2024-04-16 19:50:45 +02:00
Delete-from-text-node-with-associated-range.txt LibWeb: Use correct offset value when replacing character data 2024-02-10 11:18:51 +01:00
derived-interface-prototype.txt LibWeb: Implement WebIDL constructor flow for derived classes 2024-07-05 21:04:27 +02:00
Document-createCDATASection.txt LibWeb: Implement document.createCDATASection() 2024-02-19 10:42:56 +01:00
Document-createElementNS-uppercase.txt LibWeb: Make document.createElementNS() case-sensitive 2024-07-25 13:12:34 +02:00
Document-dir.txt LibWeb: Implement Document.dir 2024-05-14 13:35:36 -04:00
Document-methods-that-must-do-nothing.txt LibWeb: Add methods to Document that must do nothing 2024-04-14 10:45:43 +02:00
Document-named-properties.txt LibWeb: Implement Document's supported property names closer to the spec 2024-03-29 08:52:01 -04:00
Document-set-designMode.txt LibWeb: Implement document.designMode 2024-02-12 07:35:14 +01:00
Document-set-partial-attributes.txt LibWeb/DOM: Implement the Document object's partial attributes 2024-04-19 10:58:45 +02:00
DOMImplementation-create-xml-document.txt LibWeb: Create XMLDocuments in DOMImplementation.createDocument 2024-01-04 11:23:20 +01:00
DOMImplementation-createHTMLDocument.txt LibWeb: Make DOMImplementation.createHTMLDocument() create HTMLDocument 2024-03-11 18:29:10 +01:00
DOMParser-xml-document.txt LibWeb: Create XML Documents in DOMParser.parseFromString 2024-01-04 11:23:20 +01:00
DOMParser-xmlns.txt LibXML: Set XMLNS namespace for xmlns attribute 2024-07-14 11:49:31 +02:00
DOMStringMap-setter-with-invalid-name.txt LibWeb: Propagate exceptions from setAttribute() in DOMStringMap setter 2024-07-20 06:41:25 +02:00
Element-classList.txt LibWeb: Perform DOMTokenList token validation in the correct order 2024-07-25 06:43:31 +02:00
Element-closest.txt LibWeb: Change Element::closest() to check if any of selector matches 2024-03-22 18:43:46 +01:00
Element-from-point-2.txt LibWeb: Do paint-order traversal in Document::element_from_point() 2024-02-14 06:56:22 +01:00
Element-from-point.txt LibWeb: Implement document.elementFromPoint() 2024-02-06 08:43:03 +01:00
Element-getAttributeNodeNS.txt LibWeb: Implement Element.getAttributeNodeNS 2024-01-14 16:10:18 -07:00
Element-getAttributeNS.txt LibWeb: Implement Element.getAttributeNS 2024-01-13 08:33:10 +01:00
Element-removeAttributeNode.txt LibWeb: Implement Element.removeAttributeNode() 2024-04-14 22:08:22 +02:00
Element-removeAttributeNS.txt LibWeb: Implement Element.removeAttributeNS 2024-01-14 16:10:18 -07:00
element-scroll-height.txt LibWeb: Return overflow rect height from Element::scroll_height() 2024-02-19 20:07:12 +01:00
element-scroll-width.txt LibWeb: Return overflow rect width from Element::scroll_width() 2024-02-19 20:07:12 +01:00
Element-set-scroll-left.txt LibWeb: Clamp scroll offset to valid range in set_scroll_offset() 2024-02-22 07:35:30 +01:00
Element-setAttribute-capitalization.txt LibWeb: Add name validation and document check to setAttribute 2024-04-19 06:32:41 -04:00
Element-setAttribute-name-validation.txt LibWeb: Add name validation and document check to setAttribute 2024-04-19 06:32:41 -04:00
Element-toggleAttribute-xml-doc-html-ns.txt LibWeb: Only use lowercase attributes on toggle for HTML documents 2024-05-12 07:28:09 +01:00
Elements-from-point-2.txt LibWeb: Do paint-order traversal in Document::elements_from_point() 2024-02-14 06:56:22 +01:00
Elements-from-point-3.txt LibWeb: Do paint-order traversal in Document::elements_from_point() 2024-02-14 06:56:22 +01:00
Elements-from-point.txt LibWeb: Do paint-order traversal in Document::elements_from_point() 2024-02-14 06:56:22 +01:00
getElementById-empty-string.txt LibWeb: Ensure document.getElementById("") returns null 2024-07-23 08:58:22 +02:00
getElementById-multiple.txt LibWeb: Make getElementById() always return first match in tree order 2024-07-21 11:42:53 +01:00
getElementsByClassName-empty-string.txt LibWeb: Ensure document.getElementsByClassName("") returns no elements 2024-07-23 08:58:22 +02:00
getElementsByClassName-multiple.txt LibWeb: Ensure ParentNode.getElementsByClassName() matches all classes 2024-08-04 10:39:17 +02:00
getElementsName-empty-string.txt LibWeb: Ensure document.getElementsByName("") returns no elements 2024-07-23 08:58:22 +02:00
HTMLCollection-empty-string-as-property-name.txt LibWeb: Don't advertise the empty string as HTMLCollection property name 2024-05-27 17:33:29 +02:00
HTMLCollection-order.txt LibWeb: Look for first ID _or_ name in HTMLCollection::named_item 2024-04-26 07:44:01 -04:00
HTMLSelectElement-length.txt LibWeb: Correct logic for removing end nodes from HTMLOptionsCollection 2024-07-27 20:23:14 +01:00
Node-isDefaultNamespace.txt LibWeb: Implement Node.isDefaultNamespace() 2024-07-18 12:41:01 +03:00
Node-isEqualNode.txt Tests/LibWeb: Add some tests for Node.isEqualNode 2024-07-19 09:22:08 +02:00
Node-lookupNamespaceURI.txt LibWeb: Implement Node.lookupNamespaceURI() 2024-07-18 12:41:01 +03:00
Node-lookupPrefix.txt LibWeb/DOM: Implement Node.lookupPrefix 2024-07-28 00:51:55 +01:00
Node-nodeName.txt Tests: Add test for Node.nodeName 2024-07-26 07:19:23 +02:00
Node-normalize.txt LibWeb: Implement Node.normalize() 2024-07-13 09:35:54 +02:00
Offset-of-empty-inline-element.txt LibWeb: Make offsetTop and offsetLeft behave more like other browsers 2024-07-25 18:52:04 +02:00
Range-containing-CDATASection.txt LibWeb: Calculate length for all CharacterData type nodes correctly 2024-07-25 15:57:21 +01:00
Range-deleteContents.txt LibWeb: Fix nodesToRemove collecting traversal in Range::delete_contents 2024-04-20 13:32:24 +02:00
Range-to-string.txt LibWeb: Use UTF-16 code unit offsets in Range::to_string 2024-01-04 10:10:44 +01:00
setAttribute-with-emoji-in-attribute-name.txt
Text-methods.txt LibWeb: Use UTF-16 code unit offsets and lengths in CharacterData 2023-12-23 20:41:41 +01:00
Text-set-get-data.txt LibWeb: Add a test for setting and getting Text data 2023-12-22 08:19:51 +00:00
Text-wholeText.txt LibWeb: Implement Text.wholeText 2024-07-20 18:02:51 +01:00
TreeWalker-nextNode-with-detached-currentNode.txt
update-live-ranges-on-node-insertion.txt LibWeb: Don't crash on live range offset update during node insertion 2024-03-12 16:30:39 +01:00
Window-methods-that-must-do-nothing.txt LibWeb: Add methods to Window that must do nothing 2024-04-14 10:45:43 +02:00