commit d32c8c31e292779df07d11df5ee7896b21fce3b3
parent c34dcc05d9003644c60665e3c505adc2eedbae23
Author: Sam Sneddon <gsnedders@apple.com>
Date: Wed, 15 Oct 2025 08:22:59 +0000
Bug 1993629 [wpt PR 55084] - Ignore untested members when testing the default toJSON operation, a=testonly
Automatic update from web-platform-tests
Ignore untested members when testing the default toJSON operation (#55084)
--
wpt-commits: 9277e3277504f5eb89221326c9c51b0c653824b4
wpt-pr: 55084
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testing/web-platform/tests/resources/idlharness.js b/testing/web-platform/tests/resources/idlharness.js
@@ -1398,7 +1398,7 @@ IdlInterface.prototype.default_to_json_operation = function() {
if (I.has_default_to_json_regular_operation()) {
isDefault = true;
for (const m of I.members) {
- if (m.special !== "static" && m.type == "attribute" && I.array.is_json_type(m.idlType)) {
+ if (!m.untested && m.special !== "static" && m.type == "attribute" && I.array.is_json_type(m.idlType)) {
map.set(m.name, m.idlType);
}
}