Minor errors in WD-html40-971017

Hi HTML 4.0 editors,

I found some minor errors in WD-html40-971017.


1. %Length; is not defined in HTML4-strict.dtd

In HTML4-strict.dtd, attribute value of CELLSPACING and CELLPADDING
attributes of TABLE element is referenced as %Length, but %Length; is
not defined in HTML4-strict.dtd. 

In HTML4-loose.dtd, there is a following definition:

  <!ENTITY % Length "CDATA" -- nn for pixels or nn% for percentage length -->

I think HTML4-strict.dtd should have the same definition.


2. Wrong example of image map in WD-html40-971017/struct/objects.html

In WD-html40-971017/struct/objects.html, there is an example of
client-side image map with MAP and AREA, something like this:

  <IMG src="navbar1.gif" usemap="#map1"></IMG>

  <MAP name="map1">
		(snip)
   <AREA href="shortcut.html"
            alt="Go"
            shape="circ"
            coords="184,200,60">
		(snip)
  </MAP>

In this example, "circ" is used for attribute value of SHAPE attribute,
but possible attribute values of SHAPE attribute are defined as follows.

  <!ENTITY % Shape "(rect|circle|poly|default)">

So it should be "circle", I guess.


-- 
Masayasu Ishikawa / mimasa@w3.org
W3C - World Wide Web Consortium

Received on Monday, 20 October 1997 03:03:38 UTC