| Index: third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-auth-denied.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-auth-denied.html b/third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-auth-denied.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..13cf0f33407d22a289689a04d9dec210b91643bf
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-auth-denied.html
|
| @@ -0,0 +1,15 @@
|
| +<script src="../resources/testharness.js"></script>
|
| +<script src="../resources/testharnessreport.js"></script>
|
| +<script>
|
| +test(function () {
|
| + // http://username@password:localhost:8000/... should be blocked.
|
| + var originWithAuth = new URL(document.URL);
|
| + originWithAuth.username += 'username';
|
| + originWithAuth.password += 'password';
|
| + originWithAuth = originWithAuth.href;
|
| +
|
| + assert_throws('SecurityError', function () {
|
| + history.pushState(null, null, originWithAuth);
|
| + });
|
| +}, 'pushState that changes credentials should fail with SecurityError');
|
| +</script>
|
|
|