mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 12:51:09 +02:00
Automatic update from web-platform-testsConvert Scroll-linked Animations IDL test to use idl_test (#12575) The current test is broken because of missing dependencies: https://staging.wpt.fyi/results/scroll-animations/idlharness.html?label=stable&sha=6aef6676d2 -- wpt-commits: eece8a17099ad0789532d570f916bcc3a0d17a67 wpt-pr: 12575
16 lines
409 B
JavaScript
16 lines
409 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
'use strict';
|
|
|
|
idl_test(
|
|
['scroll-animations'],
|
|
// The css-pseudo dependency shouldn't be necessary, but is:
|
|
// https://github.com/web-platform-tests/wpt/issues/12574
|
|
['web-animations', 'css-pseudo', 'dom'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
ScrollTimeline: ['new ScrollTimeline()'],
|
|
});
|
|
}
|
|
);
|