[w3m-dev 04115] Re: start attribute and value attribute on ordered lists

TSUCHIYA Masatoshi <[email protected]> Thu, 04 Nov 2004 13:48:15 +0900
Newsgroups gmane.comp.web.w3m.devel
Message-ID <[email protected]>
>> On Thu, 04 Nov 2004 13:03:07 +0900 (JST)
>> [email protected] (Hiroyuki Ito) said as follows:

>>  w3m-0.5.1  start  value 
>> 



>
>

start  value  0 


()

  <ol start="-5">
   <li>A</li>
   <li>B</li>
   <li>C</li>
   <li value="0">D</li>
   <li>E</li>
  </ol>

Mozilla Firefox 1.0RC1 

  -5. A
  -4. B
  -3. C
  0. D
  1. E

Mozilla Firefox 1.0RC1 

  <ol start="0">
   <li>A</li>
   <li>B</li>
   <li>C</li>
   <li value="-5">D</li>
   <li>E</li>
  </ol>

0,1,2,-5,-4 

? 
http://www.w3.org/TR/1999/REC-html401-19991224/types.html 

web> 6.2 SGML basic types
web> 
web> The document type definition specifies the syntax of HTML element
web> content and attribute values using SGML tokens (e.g., PCDATA, CDATA,
web> NAME, ID, etc.). See [ISO8879] for their full definitions. The
web> following is a summary of key information:
(snip)
web> NUMBER tokens must contain at least one digit ([0-9]).

ISO8879 


  <ol type="a" start="0">
    <li>?
  </ol>



  <ol type="1">
    <li value="0"> 0 
  </ol>

-- 
  ( TSUCHIYA Masatoshi )