https://github.com/web-platform-tests/wpt
Raw File
Tip revision: fe38104efc1fefb450302f42f157855f579d174c authored by Lan Wei on 15 December 2018, 01:20:34 UTC
Support multiple mouse pointers inputs
Tip revision: fe38104
idlharness.any.js
// 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()']
    });
  }
);
back to top