mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-19 08:11:58 +00:00
7 lines
217 B
Text
7 lines
217 B
Text
|
|
// https://encoding.spec.whatwg.org/#textdecodercommon
|
||
|
|
interface mixin TextDecoderCommon {
|
||
|
|
readonly attribute DOMString encoding;
|
||
|
|
readonly attribute boolean fatal;
|
||
|
|
readonly attribute boolean ignoreBOM;
|
||
|
|
};
|