Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="../../resources/testharness.js"></script> | |
| 5 <script src="../../resources/testharnessreport.js"></script> | |
| 6 <script src="wasm-constants.js"></script> | |
| 7 <script src="wasm-module-builder.js"></script> | |
| 8 <script src="wasm-limits-tests-common.js"></script> | |
| 9 <script src="wasm-limits-tests.js"></script> | |
| 10 </head> | |
| 11 <body> | |
| 12 <script> | |
|
bradnelson
2017/02/18 22:16:22
Could we put this script in a separate js file?
Mircea Trofin
2017/02/19 00:18:33
As a weak argument, I've seen this pattern elsewhe
| |
| 13 test(TestBuffersAreCorrect, "wasm limits buffers are setup correctly"); | |
| 14 test(TestSyncCompile, "wasm sync compile test"); | |
| 15 promise_test(TestPromiseCompile, "wasm promise compile test"); | |
| 16 promise_test(TestWorkerCompileAndInstantiate, "wasm worker compile test"); | |
| 17 promise_test(TestPromiseCompileSyncInstantiate, "wasm sync instantiate"); | |
| 18 promise_test(TestPromiseCompileAsyncInstantiateFromBuffer, "wasm async insta ntiate from buffer"); | |
| 19 promise_test(TestPromiseCompileAsyncInstantiateFromModule, "wasm async insta ntiate from module"); | |
| 20 </script> | |
| 21 </body> | |
| 22 </html> | |
| OLD | NEW |