diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-paint-api/parse-input-arguments-008.https.html')
-rw-r--r-- | tests/wpt/web-platform-tests/css/css-paint-api/parse-input-arguments-008.https.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-paint-api/parse-input-arguments-008.https.html b/tests/wpt/web-platform-tests/css/css-paint-api/parse-input-arguments-008.https.html index 1914e3cf044..e6b863c641c 100644 --- a/tests/wpt/web-platform-tests/css/css-paint-api/parse-input-arguments-008.https.html +++ b/tests/wpt/web-platform-tests/css/css-paint-api/parse-input-arguments-008.https.html @@ -25,7 +25,8 @@ try { } }); } catch(ex) { - if (ex.name == 'TypeError' && ex.message == "Failed to execute 'registerPaint' on 'PaintWorkletGlobalScope': The provided value cannot be converted to a sequence.") + // 'inputProperties' property is 42, not a sequence<DOMString>. + if (ex.name == 'TypeError') testsPassed = true; } |