OLD | NEW |
1 <!--Test file for ClientCancelled redirect_uitest. This tests that a location ch
ange when a pending | 1 <!--Test file for ClientCancelled redirect_uitest. This tests that a location ch
ange when a pending |
2 client redirect exists (in this case a meta-refresh) isn't flagged as a client r
edirect. The timeout | 2 client redirect exists (in this case a meta-refresh) isn't flagged as a client r
edirect. The timeout |
3 for the meta-refresh is large so that it can't happen during this test; we just
want it to be scheduled. | 3 for the meta-refresh is large so that it can't happen during this test; we just
want it to be scheduled. |
4 We can't use a body onload to do the location change, because this will end up f
iring before the | 4 We can't use a body onload to do the location change, because this will end up f
iring before the |
5 meta-refresh timer is scheduled, so we use a non-zero timeout of 1msec for this.
--> | 5 meta-refresh timer is scheduled, so we use a non-zero timeout of 1msec for this.
--> |
6 <html> | 6 <html> |
7 <head> | 7 <head> |
8 <meta http-equiv="refresh" content="20000"> | 8 <meta http-equiv="refresh" content="20000"> |
9 <script> | 9 <script> |
10 function click() { | 10 function click() { |
11 document.location = "#myanchor"; | 11 document.location = "#myanchor"; |
12 return true; | 12 return true; |
13 } | 13 } |
14 </script> | 14 </script> |
15 </head> | 15 </head> |
16 <body> | 16 <body onclick="click()"> |
17 <input type="button" id="mybutton" onclick="document.location='#myanch
or'"/> | 17 <input type="button" id="mybutton" onclick="document.location='#myanch
or'"/> |
18 <a name="myanchor">Anchor</a><br/> | 18 <a name="myanchor">Anchor</a><br/> |
19 </body> | 19 </body> |
20 </html> | 20 </html> |
OLD | NEW |