| Index: third_party/WebKit/LayoutTests/http/tests/fetch/resources/redirect-loop.php
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/fetch/resources/redirect-loop.php b/third_party/WebKit/LayoutTests/http/tests/fetch/resources/redirect-loop.php
|
| index 78fd9cb9b4c1ff695227cbe83c16f6d293529fba..3912c7b15843cb35f552113e78d2485feec70fe1 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/fetch/resources/redirect-loop.php
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/fetch/resources/redirect-loop.php
|
| @@ -5,10 +5,10 @@ if (isset($_GET['Count'])) {
|
| $count = intval($_GET['Count']) - 1;
|
| if ($count > 0) {
|
| $url = $path .
|
| - '?Redirect=' . rawurlencode($url) .
|
| - '&Count=' . $count ;
|
| + '?Redirect=' . rawurlencode($url);
|
| if (isset($_GET['ACAOrigin']))
|
| $url .= '&ACAOrigin=' . $_GET['ACAOrigin'];
|
| + $url .= '&Count=' . $count ;
|
| }
|
| }
|
| header("Location: $url");
|
|
|