mirror of
https://github.com/servo/servo.git
synced 2025-06-29 03:23:41 +01:00
14 lines
301 B
JavaScript
14 lines
301 B
JavaScript
// META: global=window,worker
|
|
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
idl_test(
|
|
['encoding'],
|
|
[], // No deps
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
TextEncoder: ['new TextEncoder()'],
|
|
TextDecoder: ['new TextDecoder()']
|
|
});
|
|
}
|
|
);
|