From 065f19ea77f34465a54cc2f5651b9134c1ad6b11 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 7 May 2024 04:55:56 -0700 Subject: [PATCH] Mark Worker `name` option as available under android_webview (#22846) This was originally added as unavailable back in 2018 (#3049). However, testing using the android webview shell shows that it is working fine. The test I used was: ``` new Worker(URL.createObjectURL(new Blob(["console.log('my name is ' + self.name)"], {type: 'application/javascript'})), {name: "foo"}) ``` I ran this is DevTools and it printed `my name is foo`. --- api/Worker.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/api/Worker.json b/api/Worker.json index 2dc0708df008b1..417d2ff9f6afd0 100644 --- a/api/Worker.json +++ b/api/Worker.json @@ -238,9 +238,7 @@ }, "safari_ios": "mirror", "samsunginternet_android": "mirror", - "webview_android": { - "version_added": false - } + "webview_android": "mirror" }, "status": { "experimental": false,