| Index: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/invalid-header-iframe.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/invalid-header-iframe.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/invalid-header-iframe.html
|
| deleted file mode 100644
|
| index 4513537502ba486e0dd87adea09653499444d930..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/invalid-header-iframe.html
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -<script src="../../resources/testharness.js"></script>
|
| -<script src="test-helpers.js"></script>
|
| -<script>
|
| -
|
| -function xhr_send(method, data) {
|
| - return new Promise(function(resolve, reject) {
|
| - var xhr = new XMLHttpRequest();
|
| - xhr.onload = function() {
|
| - reject('XHR must fail.');
|
| - };
|
| - xhr.onerror = function() {
|
| - resolve();
|
| - };
|
| - xhr.responseType = 'text';
|
| - xhr.open(method, './dummy?test', true);
|
| - xhr.send(data);
|
| - });
|
| -}
|
| -
|
| -
|
| -window.addEventListener('message', function(evt) {
|
| - var port = evt.ports[0];
|
| - xhr_send('POST', 'test string')
|
| - .then(function() { port.postMessage({results: 'finish'}); })
|
| - .catch(function(e) { port.postMessage({results: 'failure:' + e}); });
|
| - });
|
| -</script>
|
|
|