Issue #351

This test-case is intended for Issue #351 - Intermittently, loading page or entering debugger causes page to be rerequested from server.
Jan Odvarko, odvarko@gmail.com

  1. Open Firebug and activate the Net tab. You should see two requests (Issue351.htm and FormFrame.htm). The form is inserted within an iframe, so the page (and Firebug) isn't refreshed after the form is submitted.
  2. Put anything in the "Posted data" field in the form below (or keep the current date). This text should be returned in the response.
  3. Click on the "Submit" button within the form.
  4. The response should be visible within the frame. It should be the text inserted in "Posted Data" field.
  5. At the same time, Net panel should display new entry - processForm.php
  6. Open the entry and see the Reponse. At this moment no network request should be made.
  7. Displayed response should be the same as in the frame.
The response displayed in Firebug's Net panel, will be probably "no data posted". This is because there are no posted data in the additional request (which is made by Firebug in order to find out the response text. The processForm.php file looks like as follows:
<?php if (isset($_POST["data"])) echo $_POST["data"]; else echo "no data posted"; ?>