This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 17036 - <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <title>Unordered List Example</title> </head> <body> <ul> <li>Unor
Summary: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3...
Status: RESOLVED INVALID
Alias: None
Product: WHATWG
Classification: Unclassified
Component: HTML (show other bugs)
Version: unspecified
Hardware: Other other
: P3 normal
Target Milestone: Unsorted
Assignee: Ian 'Hixie' Hickson
QA Contact: contributor
URL: http://www.whatwg.org/specs/web-apps/...
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-05-11 05:11 UTC by contributor
Modified: 2012-07-18 18:41 UTC (History)
2 users (show)

See Also:


Attachments

Description contributor 2012-05-11 05:11:21 UTC
Specification: http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html
Multipage: http://www.whatwg.org/C#foreign-elements
Complete: http://www.whatwg.org/c#foreign-elements

Comment:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html
xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <title>Unordered List
Example</title> </head> <body>	<ul>	  <li>Unordered lists	       <ul>   
     <li>can be nested. 	     <ul>	      <li>Bullet changes on
nesting.</li>		  </ul> 	  </li>      </ul>   </li> </ul> 
<p>Bullets can be controlled with the <b>type</b> attribute. <b>Type</b> can
be set for the list as a whole or item by item.</p>  <ul type="square">     
<li>First item bullet shape set by ul</li>     <li type="disc">Disc item</li> 
   <li type="circle">Circle item</li>	  <li type="square">Square item</li> 
</ul>  </body> </html>

Posted from: 84.235.75.82
User agent: Mozilla/5.0 (Windows NT 6.0; rv:12.0) Gecko/20100101 Firefox/12.0