Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / loading / resources / 307-post-output-target.php
blobd430e9a5c99429cd61db28dbff5d73ff0a3159ca
1 <?php
2 $sortedKeys = array_keys($_POST);
3 sort($sortedKeys);
4 ?>
5 <html><body>
6 <?php
7 if ( sizeof($_POST) == 0)
8 echo "There were no POSTed form values.";
9 else
10 echo "Form values are:<br>";
12 foreach ($sortedKeys as $value) {
13 echo "$value : $_POST[$value]";
14 echo "<br>";
17 <script>
18 if (window.testRunner)
19 testRunner.notifyDone();
20 </script>
21 </body>
22 </html>