Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Commit 8616d7d

Browse files
committed
Add WebAssembly
1 parent 085641f commit 8616d7d

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

scripts/9/data.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2228,6 +2228,20 @@ var tests = [
22282228
url: 'https://w3c.github.io/requestidlecallback/#the-requestidlecallback-method'
22292229
}
22302230
]
2231+
}, {
2232+
id: 'native',
2233+
status: 'experimental',
2234+
name: 'Web Assembly',
2235+
items: [
2236+
{
2237+
id: 'webassembly',
2238+
name: 'Web Assembly',
2239+
value: 1,
2240+
urls: [
2241+
[ 'other', 'http://webassembly.org/docs/js/' ],
2242+
]
2243+
}
2244+
]
22312245
}, {
22322246
id: 'resource',
22332247
status: 'stable',

scripts/9/engine.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2272,6 +2272,16 @@ Test9 = (function () {
22722272
},
22732273

22742274

2275+
/* webassembly */
2276+
2277+
function (results) {
2278+
results.addItem({
2279+
key: 'native.webassembly',
2280+
passed: 'WebAssembly' in window
2281+
});
2282+
},
2283+
2284+
22752285
/* font loader */
22762286

22772287
function (results) {

0 commit comments

Comments
 (0)