mirror of
https://github.com/servo/servo.git
synced 2025-08-16 02:45:36 +01:00
Update web-platform-tests to revision 4a5223502fa660ce03e470af6a61c8bc26c5a8ee
This commit is contained in:
parent
c5f7c9ccf3
commit
e891345f26
1328 changed files with 36632 additions and 20588 deletions
|
@ -10,13 +10,16 @@
|
|||
'use strict';
|
||||
|
||||
promise_test(async t => {
|
||||
const [html, dom, mediacapture, webaudio] = await Promise.all([
|
||||
const [html, dom, uievents, mediacapture, webaudio] = await Promise.all([
|
||||
// Needed for EventTarget, HTMLMediaElement
|
||||
'/interfaces/html.idl',
|
||||
|
||||
// Needed for Event, EventListener
|
||||
'/interfaces/dom.idl',
|
||||
|
||||
// Needed for MouseEvent
|
||||
'/interfaces/uievents.idl',
|
||||
|
||||
// Needed for MediaStream, MediaStreamTrack
|
||||
'/interfaces/mediacapture-main.idl',
|
||||
|
||||
|
@ -28,7 +31,15 @@ promise_test(async t => {
|
|||
// Dependencies of HTML
|
||||
idl_array.add_untested_idls('interface LinkStyle {};');
|
||||
idl_array.add_untested_idls('interface SVGElement {};');
|
||||
idl_array.add_untested_idls('interface WorkletGlobalScope {};');
|
||||
idl_array.add_untested_idls(html);
|
||||
idl_array.add_untested_idls(uievents, { only: [
|
||||
'MouseEvent',
|
||||
'MouseEventInit',
|
||||
'EventModifierInit',
|
||||
'UIEvent',
|
||||
'UIEventInit',
|
||||
]});
|
||||
|
||||
idl_array.add_untested_idls(dom);
|
||||
idl_array.add_untested_idls(mediacapture);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue