Lines Matching refs:stream
19 const stream = new TextDecoderStream(label);
20 assert_equals(stream.encoding, labelToName[label], 'encoding should match');
26 const stream = new TextDecoderStream('utf-8', { fatal: falseValue });
27 assert_false(stream.fatal, 'fatal should be false');
31 const stream = new TextDecoderStream('utf-8', { ignoreBOM: falseValue });
32 assert_false(stream.ignoreBOM, 'ignoreBOM should be false');
38 const stream = new TextDecoderStream('utf-8', { fatal: trueValue });
39 assert_true(stream.fatal, 'fatal should be true');
43 const stream = new TextDecoderStream('utf-8', { ignoreBOM: trueValue });
44 assert_true(stream.ignoreBOM, 'ignoreBOM should be true');