Revision 920625c0189a444b6c4f0ce44ca3d02d5921ee39 authored by Ms2ger on 06 April 2018, 07:56:32 UTC, committed by Ms2ger on 06 April 2018, 08:10:11 UTC
1 parent d6a82fd
Raw File
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