diff options
| author | Phil Crosby | 2009-11-11 00:01:17 -0800 | 
|---|---|---|
| committer | Phil Crosby | 2009-11-11 00:24:58 -0800 | 
| commit | ab53553dcc4356ae0d76f28c62722907e71c762f (patch) | |
| tree | 1cadbd55f3bfc49a9b7086dc267226afdd26aae6 /test_harnesses | |
| parent | d6b95ff166a5e11b34e22dc3854ffeff2df6f5b6 (diff) | |
| download | vimium-ab53553dcc4356ae0d76f28c62722907e71c762f.tar.bz2 | |
Add a simple iframe test harness to play with during development.
Diffstat (limited to 'test_harnesses')
| -rw-r--r-- | test_harnesses/iframe.html | 26 | 
1 files changed, 26 insertions, 0 deletions
| diff --git a/test_harnesses/iframe.html b/test_harnesses/iframe.html new file mode 100644 index 00000000..1de9b75f --- /dev/null +++ b/test_harnesses/iframe.html @@ -0,0 +1,26 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" +  "http://www.w3.org/TR/html4/strict.dtd"> +<html> +<head> +  <title>IFrame test harness</title> +  <style type="text/css" media="screen"> +    body { +      background-color:#ccc; +      height:4000px; +    } + +    iframe { +      border:4px solid orange; +      width:800px; +      height:600px; +    } + +    h2 { margin: 4px; } +       +  </style> +</head> +<body> +  <h2>IFrame test page</h2> +  <iframe src="http://www.google.com"></iframe> +</body> +</html>
\ No newline at end of file | 
