mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
// META: global=window,worker
|
|
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
idl_test(
|
|
['encoding'],
|
|
['streams'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
TextEncoder: ['new TextEncoder()'],
|
|
TextDecoder: ['new TextDecoder()']
|
|
});
|
|
}
|
|
);
|