summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/DOM/CharacterData.idl
AgeCommit message (Collapse)Author
2022-10-09LibWeb: Add Exposed attribute and IDL spec links where missingAndrew Kaster
The intent is to use these to autogenerate prototype declarations for Window and WorkerGlobalScope classes. And the spec links are just nice to have :^)
2022-07-30LibWeb: Resolve circular IDL importsMacDue
These circular imports led to the generator silently failing to generate the required methods/properties.
2022-07-29LibWeb: Extract the ChildNode IDL mixinSam Atkins
2022-07-11LibWeb: Implement CharacterData.{append,insert,delete}DataLuke Wilde
2022-03-21LibWeb: Add CharacterData.replaceData(offset, count, data)Andreas Kling
Note that we don't queue mutation records or update live ranges yet, I've left those as FIXMEs.
2022-03-21LibWeb: Add CharacterData.substringData(offset, count)Andreas Kling
2022-02-16LibWeb: Add imports to all IDL files that depend on othersAli Mohammad Pur
2022-01-31LibWeb: Implement ChildNode.replaceWithLuke Wilde
2022-01-31LibWeb: Implement ChildNode.afterLuke Wilde
2022-01-31LibWeb: Implement ChildNode.beforeLuke Wilde
2021-09-29LibWeb: Implement ChildNode.removeLuke Wilde
2021-09-06LibWeb: Add [LegacyNullToEmptyString] to CharacterData.dataLuke Wilde
See https://dom.spec.whatwg.org/#characterdata
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling