https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 85bfdbfc6739dd090b0a568712713432d3aa2d51 authored by Darren Shen on 11 April 2018, 10:17:19 UTC
[css-typed-om] Support remaining inline properties.
Tip revision: 85bfdbf
interfaces.https.any.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

'use strict';

// https://w3c.github.io/payment-handler/

promise_test(async () => {
  const idl = await fetch('/interfaces/payment-handler.idl').then(r => r.text());
  const idlArray = new IdlArray();
  idlArray.add_idls(idl);
  idlArray.add_untested_idls('interface ExtendableEvent {};');
  idlArray.add_untested_idls('dictionary ExtendableEventInit {};');
  idlArray.test();
  done();
}, 'Payment handler interfaces.');
back to top