Bug 1475774 [wpt PR 11980] - Update the css-images IDL file, a=testonly
Automatic update from web-platform-testsUpdate the css-images IDL file (#11980)
--
wpt-commits: 9523126129ade5dc037ae3c7de9101c69872428f
wpt-pr: 11980
--- a/testing/web-platform/meta/MANIFEST.json
+++ b/testing/web-platform/meta/MANIFEST.json
@@ -287844,16 +287844,21 @@
{}
]
],
"interfaces/css-fonts.idl": [
[
{}
]
],
+ "interfaces/css-images.idl": [
+ [
+ {}
+ ]
+ ],
"interfaces/css-masking.idl": [
[
{}
]
],
"interfaces/css-paint-api.idl": [
[
{}
@@ -319189,16 +319194,22 @@
]
],
"css/css-images/gradient/color-stops-parsing.html": [
[
"/css/css-images/gradient/color-stops-parsing.html",
{}
]
],
+ "css/css-images/idlharness.html": [
+ [
+ "/css/css-images/idlharness.html",
+ {}
+ ]
+ ],
"css/css-images/parsing/gradient-position-invalid.html": [
[
"/css/css-images/parsing/gradient-position-invalid.html",
{}
]
],
"css/css-images/parsing/gradient-position-valid.html": [
[
@@ -522508,16 +522519,20 @@
"css/css-images/gradients-with-transparent-ref.html": [
"afaee81ac76599c859b267754920b9dc8df97ea9",
"support"
],
"css/css-images/gradients-with-transparent.html": [
"4b49a6bc4cfef048f3a4ac1d62feeb604e0d28a5",
"reftest"
],
+ "css/css-images/idlharness.html": [
+ "43a0b8582221d2cd3838fcf6ba93bc7198cbdbf1",
+ "testharness"
+ ],
"css/css-images/image-fit-001.xht": [
"868d9469f57e6013a024efa5e04ef2455d97296e",
"visual"
],
"css/css-images/image-fit-006.xht": [
"223fe97a140e0cfb52709f02c72d8d32c5e6ae95",
"visual"
],
@@ -592560,16 +592575,20 @@
"interfaces/css-font-loading.idl": [
"9f2f252c5b63c159d9680de46a932bfa4335bf11",
"support"
],
"interfaces/css-fonts.idl": [
"ff2d83e9468c743993c9b4a1ecf3fab09684dc16",
"support"
],
+ "interfaces/css-images.idl": [
+ "29ff2de2d9dac38494a4e2b7cfc6dfc2947f16c1",
+ "support"
+ ],
"interfaces/css-masking.idl": [
"5f4ed3d8922e30ab3ddb714d185c6e6f794e5a29",
"support"
],
"interfaces/css-paint-api.idl": [
"9939fb7f08cab0f167e6e0762eac6ad94b2dfd9f",
"support"
],
new file mode 100644
--- /dev/null
+++ b/testing/web-platform/tests/css/css-images/idlharness.html
@@ -0,0 +1,19 @@
+<!doctype html>
+<title>css-images IDL tests</title>
+<link rel="help" href="https://drafts.csswg.org/css-images-4/">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/resources/WebIDLParser.js"></script>
+<script src="/resources/idlharness.js"></script>
+<script>
+ 'use strict';
+
+ idl_test(
+ ['css-images'],
+ ['cssom'],
+ idl_array => {
+ // No objects,
+ },
+ 'Test IDL implementation of css-masking'
+ );
+</script>
new file mode 100644
--- /dev/null
+++ b/testing/web-platform/tests/interfaces/css-images.idl
@@ -0,0 +1,8 @@
+// GENERATED CONTENT - DO NOT EDIT
+// Content of this file was automatically extracted from the
+// "CSS Images Module Level 4" spec.
+// See: https://drafts.csswg.org/css-images-4/
+
+partial namespace CSS {
+ // [SameObject] readonly attribute Map elementSources;
+};