LibWeb: Implement TextEncoder.prototype.encoding

This commit is contained in:
Linus Groh 2021-12-12 18:06:07 +00:00 committed by Andreas Kling
commit f8387dea26
Notes: sideshowbarker 2024-07-17 22:53:28 +09:00
4 changed files with 23 additions and 1 deletions

View file

@ -5,5 +5,5 @@ interface TextEncoder {
[NewObject] Uint8Array encode(optional USVString input = "");
// TextEncoderEncodeIntoResult encodeInto(USVString source, [AllowShared] Uint8Array destination);
// readonly attribute DOMString encoding;
readonly attribute DOMString encoding;
};