Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/wasm/wasm-limits-test.html

Issue 2702953002: [wasm] Block compile/instantiate of large array buffers (Closed)
Patch Set: tests Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698