| Index: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/resources/fetch-request-xhr-sync-iframe.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/resources/fetch-request-xhr-sync-iframe.html b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/resources/fetch-request-xhr-sync-iframe.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..900762ffc6cce5b99822a9e0e938ae015c0fac11
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/resources/fetch-request-xhr-sync-iframe.html
|
| @@ -0,0 +1,13 @@
|
| +<!DOCTYPE html>
|
| +<title>Service Worker: Synchronous XHR is intercepted iframe</title>
|
| +<script>
|
| +'use strict';
|
| +
|
| +function performSyncXHR(url) {
|
| + var syncXhr = new XMLHttpRequest();
|
| + syncXhr.open('GET', url, false);
|
| + syncXhr.send();
|
| +
|
| + return syncXhr;
|
| +}
|
| +</script>
|
|
|