diff options
Diffstat (limited to 'test/data/pages')
-rw-r--r-- | test/data/pages/gotmyowndomain.html | 14 | ||||
-rw-r--r-- | test/data/pages/gotmyowndomain_https.html | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/test/data/pages/gotmyowndomain.html b/test/data/pages/gotmyowndomain.html new file mode 100644 index 0000000..daa9ab7 --- /dev/null +++ b/test/data/pages/gotmyowndomain.html @@ -0,0 +1,14 @@ +<html> + <head> + <meta name=charset value="latin1"> + <title> + Schrodinger's Document + </title> + </head> + <body> + A nice, simple page for testing. + <script> + document.write('<p><b>Or so you thought...</b></p>'); + </script> + </body> +</html> diff --git a/test/data/pages/gotmyowndomain_https.html b/test/data/pages/gotmyowndomain_https.html new file mode 100644 index 0000000..ec2aa1f --- /dev/null +++ b/test/data/pages/gotmyowndomain_https.html @@ -0,0 +1,14 @@ +<html> + <head> + <meta name=charset value="latin1"> + <title> + Schrodinger's Document + </title> + </head> + <body> + A nice, simple page for testing (using HTTPS). + <script> + document.write('<p><b>Or so you thought...</b></p>'); + </script> + </body> +</html> |