https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b5ef37f1d7620f8fba03d5ad3bfa39e28e13fa64 authored by Lan Wei on 20 December 2018, 02:33:33 UTC
Support pen inputs in web platform tests
Tip revision: b5ef37f
idlharness.window.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

// https://w3c.github.io/webappsec-subresource-integrity/

'use strict';

idl_test(
  ['SRI'],
  ['html', 'cssom', 'dom'],
  idl_array => {
    idl_array.add_objects({
      HTMLScriptElement: ['document.createElement("script")'],
      HTMLLinkElement: ['document.createElement("link")'],
    });
  }
);
back to top