Lines Matching refs:fatal
26 const stream = new TextDecoderStream('utf-8', { fatal: falseValue });
27 assert_false(stream.fatal, 'fatal should be false');
28 }, `setting fatal to '${falseValue}' should set the attribute to false`);
38 const stream = new TextDecoderStream('utf-8', { fatal: trueValue });
39 assert_true(stream.fatal, 'fatal should be true');
40 }, `setting fatal to '${trueValue}' should set the attribute to true`);
62 get fatal() { throw new Error(); }
64 }, 'a throwing fatal member should cause the constructor to throw');