Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(605)

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/navigation/resources/post-with-modifier.php

Issue 2689483007: Tests of ctrl-click can't postMessage to opener - using custom text instead. (Closed)
Patch Set: Rebasing... Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <script> 1 <script>
2 mainTestWindow = window.open("", "mainTestWindow") 2 testRunner.setCustomTextOutput(
3 var data = { 3 'method: "<?=$_SERVER['REQUEST_METHOD'] ?>"\n' +
4 'method': '<?=$_SERVER['REQUEST_METHOD'] ?>', 4 'formValue: "<?= $_POST['a'] ?>"');
5 'formValue': '<?= $_POST['a'] ?>', 5 testRunner.notifyDone();
6 };
7 mainTestWindow.postMessage(data, '*');
8 </script> 6 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698