Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/http/tests/streams/byte-length-queuing-strategy.html |
| diff --git a/third_party/WebKit/LayoutTests/http/tests/streams/byte-length-queuing-strategy.html b/third_party/WebKit/LayoutTests/http/tests/streams/byte-length-queuing-strategy.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5c02eb5787c152c9b9589e22aef95aad863b2fe6 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/http/tests/streams/byte-length-queuing-strategy.html |
| @@ -0,0 +1,13 @@ |
| +<!DOCTYPE html> |
| +<meta charset="utf-8"> |
| +<script src="/resources/testharness.js"></script> |
| +<script src="/resources/testharnessreport.js"></script> |
| +<script src="/serviceworker/resources/test-helpers.js"></script> |
| + |
| +<script src="byte-length-queuing-strategy.js"></script> |
| +<script> |
| +'use strict'; |
| +fetch_tests_from_worker(new Worker('byte-length-queuing-strategy.js')); |
| +fetch_tests_from_worker(new SharedWorker('byte-length-queuing-strategy.js')); |
| +service_worker_test('byte-length-queuing-strategy.js'); |
|
tyoshino (SeeGerritForStatus)
2015/10/02 11:33:28
So, this test is run with HTTP server (placed in h
domenic
2015/10/02 22:32:14
Yes. I followed the pattern from the promise rejec
|
| +</script> |