| Index: third_party/WebKit/LayoutTests/http/tests/navigation/resources/post-with-modifier.php
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/navigation/resources/post-with-modifier.php b/third_party/WebKit/LayoutTests/http/tests/navigation/resources/post-with-modifier.php
|
| index e4e02c06d12f1bb060bc99ef05e35bda24a804f7..6020c2c44c4e8bc5e7ebb98fdb41c55f97c9aea8 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/navigation/resources/post-with-modifier.php
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/navigation/resources/post-with-modifier.php
|
| @@ -1,8 +1,6 @@
|
| <script>
|
| -mainTestWindow = window.open("", "mainTestWindow")
|
| -var data = {
|
| - 'method': '<?=$_SERVER['REQUEST_METHOD'] ?>',
|
| - 'formValue': '<?= $_POST['a'] ?>',
|
| -};
|
| -mainTestWindow.postMessage(data, '*');
|
| +testRunner.setCustomTextOutput(
|
| + 'method: "<?=$_SERVER['REQUEST_METHOD'] ?>"\n' +
|
| + 'formValue: "<?= $_POST['a'] ?>"');
|
| +testRunner.notifyDone();
|
| </script>
|
|
|