mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
Automatic update from web-platform-tests Add an idlharness.js test for the Layout Instability API (#18195) * Add interfaces/layout-instability.idl Source: https://github.com/tidoust/reffy-reports/blob/bc5dd3d/whatwg/idl/layout-instability.idl Build: https://travis-ci.org/tidoust/reffy-reports/builds/565853073 * Add an idlharness.js test for the Layout Instability API -- wpt-commits: d101e76f54f654b308f33bf99e43b3f43ba85712 wpt-pr: 18195
16 lines
302 B
JavaScript
16 lines
302 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
// https://wicg.github.io/layout-instability/
|
|
|
|
'use strict';
|
|
|
|
idl_test(
|
|
['layout-instability'],
|
|
['performance-timeline'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
// LayoutShift: [ TODO ]
|
|
});
|
|
}
|
|
);
|