1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:57:35 +00:00

LibWeb: Add [LegacyNullToEmptyString] to CharacterData.data

See https://dom.spec.whatwg.org/#characterdata
This commit is contained in:
Luke Wilde 2021-09-06 01:01:53 +01:00 committed by Andreas Kling
parent 6e80458515
commit 67c73ddd59

View file

@ -1,6 +1,6 @@
interface CharacterData : Node {
attribute DOMString data;
[LegacyNullToEmptyString] attribute DOMString data;
readonly attribute unsigned long length;
readonly attribute Element? nextElementSibling;