diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-layout-api/fallback-constructor-error.https.html')
-rw-r--r-- | tests/wpt/web-platform-tests/css/css-layout-api/fallback-constructor-error.https.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-layout-api/fallback-constructor-error.https.html b/tests/wpt/web-platform-tests/css/css-layout-api/fallback-constructor-error.https.html index 590a9d01f90..3f711af2e7a 100644 --- a/tests/wpt/web-platform-tests/css/css-layout-api/fallback-constructor-error.https.html +++ b/tests/wpt/web-platform-tests/css/css-layout-api/fallback-constructor-error.https.html @@ -40,8 +40,8 @@ <script id="code" type="text/worklet"> registerLayout('throwing-ctor', class { constructor() { throw Error('fail!'); } - *intrinsicSizes() {} - *layout() {} + async intrinsicSizes() {} + async layout() {} }); </script> |