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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/wasm/wasm_response_apis.html

Issue 2780693003: [wasm] response-based compile APIs (Closed)
Patch Set: simplify Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/wasm/wasm_response_apis.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/wasm/wasm_response_apis.html b/third_party/WebKit/LayoutTests/http/tests/wasm/wasm_response_apis.html
new file mode 100644
index 0000000000000000000000000000000000000000..b6b1d4fb7e7f22c4ab5de42b7268b86400421a3e
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/wasm/wasm_response_apis.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<script src="../../../resources/testharness.js"></script>
+<script src="../../../resources/testharnessreport.js"></script>
+<script src="wasm_response_apis.js"></script>
+<script>
+ promise_test(TestStreamedCompile, "test streamed compile");
+ promise_test(TestShortFormStreamedCompile, "test streamed compile with promise parameter");
+ promise_test(NegativeTestStreamedCompilePromise, "promise must produce a Response");
+ promise_test(BlankResponse, "blank response");
+ promise_test(FromArrayBuffer, "from array buffer");
+ promise_test(FromInvalidArrayBuffer, "from an invalid array buffer");
+</script>

Powered by Google App Engine
This is Rietveld 408576698