Some more tests (minor)
[gnash.git] / plugin / npapi / geturl.as
blob0bced3fecce365310290354e9a5929d1c6c9e575
1 /*
2 getURL(url [, window [, "variables"]])
4 Parameters
5 _self specifies the current frame in the current window.
6 _blank specifies a new window.
7 _parent specifies the parent of the current frame.
8 _top specifies the top-level frame in the current window.
10 variables A GET or POST method for sending variables. If there are no
11 variables, omit this parameter. The GET method appends the variables to
12 the end of the URL, and is used for small numbers of variables. The POST
13 method sends the variables in a separate HTTP header and is used for
14 sending long strings of variables.
18 var firstname = "Foo";
19 var lastname = "Bar";
20 var age = 100;
21 getURL("http://www.gnashdev.org", '_blank', 'POST');
23 getURL("http://www.gnashdev.org");