| Index: LayoutTests/http/tests/serviceworker/resources/fetch-access-control-login.html
|
| diff --git a/LayoutTests/http/tests/serviceworker/resources/fetch-access-control-login.html b/LayoutTests/http/tests/serviceworker/resources/fetch-access-control-login.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ccb8e4f4dc73d223c51c3b2ef9e3178f5a1b78c1
|
| --- /dev/null
|
| +++ b/LayoutTests/http/tests/serviceworker/resources/fetch-access-control-login.html
|
| @@ -0,0 +1,13 @@
|
| +<script>
|
| +var xhr = new XMLHttpRequest();
|
| +xhr.addEventListener('load', function() {
|
| + window.parent.postMessage(
|
| + {},
|
| + 'http://127.0.0.1:8000/serviceworker/fetch-access-control.html');
|
| +}, false);
|
| +xhr.open('GET',
|
| + 'http://localhost:8000/serviceworker/resources/fetch-access-control.php?Auth',
|
| + true,
|
| + 'username2', 'password2');
|
| +xhr.send();
|
| +</script>
|
|
|