<html>
<head>
<title>Image test</title>
</head>

<body bgcolor="white" text="black">

Image test... [images should be enabled for this test!]
<p><hr><p>

Normal (current directory file) image:<br>
<img src = "photo.jpeg" width=143 height=93 alt="photo" align="center"><br>
<center><i>A picture of me, circa 1988</i></center>
<p><hr><p>

Normal (non-current directory file, it's in /images) image:<br>
<img src = "images/armageddon.jpeg" width=480 height=232 alt="photo" align="center"><br>
<center><i>Bruce Willis giving Liz Tyler a big hug</i><br>
(I would drool, maybe, but Steve Tyler could <i>so</i> beat me up, so I won't...)</center>
<p><hr><p>

Normal (offset from URD file) image:<br>
<img src = "/images/photo.jpeg" width=143 height=93 alt="photo" align="center"><br>
The above is not embedded - where is '/'? No easy way to tell.
<p><hr><p>

Normal (offseted file, &quot;../examples/photo.jpeg&quot;) image, no size:<br>
<img src = "../examples/photo.jpeg" alt="photo" align="center"><br>
<center><i>Me again.</i></center>
The file will be embedded, it moves up (for the '..'), then back into the examples
directory... :-)
<p><hr><p>

Invalid HTML - no quotes, no size:<br>
<img src = ../examples/images/armageddon.jpeg alt=photo align=center><br>
<center><i>Bruce and Liz, again.</i></center>
The above will be embedded anyway...
<p><hr><p>

Invalid HTML - no leafname or size:<br>
<img src = "examples/" alt="photo" align="center"><br>
Because of this, it cannot be embedded.
<p><hr><p>

Invalid HTML - no pathname:<br>
<img src = "" width=143 height=93 alt="photo" align="center"><br>
This shows an outstanding bug in <i>OvHTML</i>, the size is parsed as the
filename.
<p><hr><p>

Invalid HTML - no 'src':<br>
<img width=143 height=93 alt="photo" align="center"><br>
Again, we can't find something we don't know!
<p><hr><p>

Invalid HTML &quot;&lt;img&gt;&quot; - no parameters at all!:<br>
<center><img></center><br>
The only thing we can do is 'unknown'.
<p><hr><p>


<font face="homerton">End of document.</font> <!-- yes, Homerton! -->
<p>

<address>&copy; 2002 Rick Murray <img src="images/bestvw2.gif"></address>
</body>
</html>
