| Index: LayoutTests/http/tests/loading/basic-credentials-sent-automatically.html
|
| diff --git a/LayoutTests/http/tests/loading/basic-credentials-sent-automatically.html b/LayoutTests/http/tests/loading/basic-credentials-sent-automatically.html
|
| deleted file mode 100644
|
| index 6adb51fc94fe213bd9faede60b163cfbd510929c..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/http/tests/loading/basic-credentials-sent-automatically.html
|
| +++ /dev/null
|
| @@ -1,69 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script>
|
| -if (window.testRunner) {
|
| - testRunner.dumpAsText();
|
| - testRunner.dumpChildFramesAsText();
|
| - testRunner.setHandlesAuthenticationChallenges(true);
|
| - testRunner.setAuthenticationUsername("first");
|
| - testRunner.setAuthenticationPassword("first-pw");
|
| - testRunner.waitUntilDone();
|
| -}
|
| -
|
| -function firstFrameLoaded()
|
| -{
|
| - if (window.testRunner) {
|
| - testRunner.setAuthenticationUsername("second");
|
| - testRunner.setAuthenticationPassword("second-pw");
|
| - }
|
| - var frame = document.createElement("iframe");
|
| - frame.setAttribute("src", "http://127.0.0.1:8000/loading/resources/protected-resource.php");
|
| - frame.setAttribute("onload", "secondFrameLoaded()");
|
| - document.body.appendChild(frame);
|
| -}
|
| -
|
| -function secondFrameLoaded()
|
| -{
|
| - if (window.testRunner) {
|
| - testRunner.setAuthenticationUsername("third");
|
| - testRunner.setAuthenticationPassword("third-pw");
|
| - }
|
| - var frame = document.createElement("iframe");
|
| - frame.setAttribute("src", "http://127.0.0.1:8000/loading/resources/protected-resource.php");
|
| - frame.setAttribute("onload", "thirdFrameLoaded()");
|
| - document.body.appendChild(frame);
|
| -}
|
| -
|
| -function thirdFrameLoaded()
|
| -{
|
| - if (window.testRunner) {
|
| - testRunner.setAuthenticationUsername("fourth");
|
| - testRunner.setAuthenticationPassword("fourth-pw");
|
| - }
|
| - var frame = document.createElement("iframe");
|
| - frame.setAttribute("src", "http://127.0.0.1:8000/loading/resources/othersubresources/protected-resource.php");
|
| - frame.setAttribute("onload", "fourthFrameLoaded()");
|
| - document.body.appendChild(frame);
|
| -}
|
| -
|
| -function fourthFrameLoaded()
|
| -{
|
| - if (window.testRunner)
|
| - testRunner.notifyDone();
|
| -}
|
| -
|
| -</script>
|
| -</head>
|
| -<body>
|
| -This test makes sure that once an HTTP Basic Auth. protected path is authenticated once, urls that emanate from that path automatically have their credentials sent without a challenge.<br>
|
| -The first frame's path is /loading/resources/subresources/protected-resource.php, and we should get a challenge for it.<br>
|
| -It will be authorized with first/first-pw.<br>
|
| -The second frame's path is /loading/resources/protected-resource.php, and we should get a challenge for it, because it does not share a common subpath of the previously authorized resource.<br>
|
| -It will be authorized with second/second-pw.<br>
|
| -The third frame's path is also /loading/resources/protected-resource.php, and we should *not* get a challenge for it because we authorized to this path for the second frame.<br>
|
| -It will be authorized with second/second-pw.<br>
|
| -The fourth frame's path is /loading/resources/othersubresources/protected-resource.php, and we should *not* get a challenge for it, because it has a common subpath with the previously authorized second and third frames.<br>
|
| -It will be authorized with second/second-pw.<br>
|
| -<iframe src="resources/subresources/protected-resource.php" onload="firstFrameLoaded();"></iframe>
|
| -</body>
|
| -</html>
|
|
|