|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
|
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|
3 |
|
4 <html> |
|
5 |
|
6 <!-- This page will accept some json as the uri query and pass it to |
|
7 an inner iframe, which will run InstallTrigger.install --> |
|
8 |
|
9 <head> |
|
10 <title>InstallTrigger frame tests</title> |
|
11 <script type="text/javascript"> |
|
12 function prepChild() { |
|
13 // Pass our parameters over to the child |
|
14 var child = window.frames[0]; |
|
15 var params = document.location.search.substr(1); |
|
16 child.location = "installtrigger.html?" + params; |
|
17 } |
|
18 </script> |
|
19 </head> |
|
20 <body onload="prepChild()"> |
|
21 |
|
22 <iframe src="about:blank"> |
|
23 </iframe> |
|
24 |
|
25 <p>InstallTrigger tests</p> |
|
26 <p id="return"></p> |
|
27 <p id="status"></p> |
|
28 </body> |
|
29 </html> |