Skip to content

Commit 5355b8d

Browse files
Fix python error when building with audio worklets enabled (#21340)
MIN_EDGE_VERSION was removed (#20881), so we do not need it in the feature matrix.
1 parent 3319a31 commit 5355b8d

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

test/test_browser.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5812,6 +5812,7 @@ def test_full_js_library_strict(self):
58125812
'minimal_runtime_pthreads_and_closure': (['-sMINIMAL_RUNTIME', '-pthread', '--closure', '1', '-Oz'],),
58135813
'pthreads_es6': (['-pthread', '-sPTHREAD_POOL_SIZE=2', '-sEXPORT_ES6'],),
58145814
'es6': (['-sEXPORT_ES6'],),
5815+
'strict': (['-sSTRICT'],),
58155816
})
58165817
def test_audio_worklet(self, args):
58175818
if '-sMEMORY64' in args and is_firefox():

tools/feature_matrix.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ class Feature(IntEnum):
7272
},
7373
Feature.GLOBALTHIS: {
7474
'chrome': 71,
75-
'edge': 79,
7675
'firefox': 65,
7776
'safari': 120100,
7877
'node': 120000,

0 commit comments

Comments
 (0)