Revision fee987632e670876c7468ccd695f41fe90911d6b authored by Manuel Rego Casasnovas on 05 April 2018, 07:04:59 UTC, committed by Manuel Rego Casasnovas on 05 April 2018, 07:04:59 UTC
The CSSWG resolved to make it explicit in the spec in issue w3c/csswg-drafts#2145.
The reason is that there's interop between all UAs regarding this.

These 2 tests were marked as optional "may" but they're not optional anymore.
1 parent 54f844c
Raw File
interfaces.any.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

promise_test(async() => {
  const text = await fetch('/interfaces/url.idl')
    .then(response => response.text());
  const idlArray = new IdlArray();
  idlArray.add_idls(text);
  idlArray.add_objects({
    URL: ['new URL("http://foo")'],
    URLSearchParams: ['new URLSearchParams("hi=there&thank=you")']
  });
  idlArray.test();
  done();
}, 'Test driver');
back to top