4 https://bugzilla.mozilla.org/show_bug.cgi?id=94514
5 Specifically, this is a test page that actually submits a form.
8 <title>Test Page for Bug
94515</title>
9 <script type=
"text/javascript" src=
"/MochiKit/packed.js"></script>
12 <form id=
"testForm" method=
"POST">
13 <input type=
"submit" id=
"send"/>
16 <script class=
"testbody" type=
"text/javascript">
18 netscape.security.PrivilegeManager.enablePrivilege(
"UniversalXPConnect");
19 if (!window.location.href.match(
"posted=1")) {
20 // Here we just submit the form
21 var form = $(
"testForm");
22 form.action = window.location.href +
"?posted=1";
25 window.location.href =
"http://mochi.test:8888/tests/docshell/test/bug94514-postpage.html";