making short test files

One of the list members suggested submitting short test files to make
 the debugger's job easier.   well this is as short as i can make it. 

aaa.css 
body {background:none}

aaa.htm
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><title>test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="aaa.css" rel="stylesheet" type="text/css">
</head><body>
<p>A simple test document that triggers a parse error in Amaya
althouh the stylesheet verifies. Background property includes
image as well as color subproperty. And none is valid value for
image (the alternate being an url).</p>
</body></html>
  //
John Russell, VE3LL@RAC.CA
http://home.cogeco.ca/~ve3ll (2 L's as in LLAMA)
check HTML at http://www.htmlhelp.com/tools/validator/
check CSS at http://jigsaw.w3.org/css-validator/
check JavaScript at http://www.crockford.com/javascript/jslint.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head><title>test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="aaa.css" rel="stylesheet" type="text/css">
</head>
<body>
<p>A simple test document that triggers a parse error in Amaya
althouh the stylesheet verifies. Background property includes
image as well as color subproperty. And none is valid value for
image (the alternate being an url).</p>
</body>
</html>
body {background:none}

Received on Wednesday, 16 April 2003 19:42:36 UTC