diff options
| -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 | 
