Skip to content

Commit 488b256

Browse files
authored
feat(firefox): bump to 1205 (microsoft#4386)
1 parent bd75fb1 commit 488b256

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

browsers.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
{
1010
"name": "firefox",
11-
"revision": "1204",
11+
"revision": "1205",
1212
"download": true
1313
},
1414
{

test/workers.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ it('should report console logs', async function({page}) {
5050
page.evaluate(() => new Worker(URL.createObjectURL(new Blob(['console.log(1)'], {type: 'application/javascript'})))),
5151
]);
5252
expect(message.text()).toBe('1');
53+
// Firefox's juggler had an issue that reported worker blob urls as frame urls.
54+
expect(page.url()).not.toContain('blob');
5355
});
5456

5557
it('should have JSHandles for console logs', async function({page}) {

0 commit comments

Comments
 (0)