blob: 425709b0de4f5e189615d0209de79e9b5bd2daea (
plain)
1
2
3
4
5
6
7
8
9
|
<html>
<body>
<iframe src="visible_iframe.html"></iframe>
<iframe width=0 height=0 src="zero_sized_iframe.html"></iframe>
<iframe style="visibility:hidden;" src="invisible_iframe.html"></iframe>
<p>This is a visible paragraph.</p>
<p style="visibility:hidden;">This is an invisible paragraph.</p>
</body>
</html>
|