| Summary: | use of <list> tags in our generated HTML | ||
|---|---|---|---|
| Product: | [ECD] Orion | Reporter: | Susan McCourt <susan> |
| Component: | Client | Assignee: | Szymon Brandys <Szymon.Brandys> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | antonm, malgorzata.tomczyk, mamacdon, Szymon.Brandys |
| Version: | 0.5 | ||
| Target Milestone: | 2.0 M2 | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | |||
|
Description
Susan McCourt
If I recall well, I copied some code from the very first version of plug-ins page (the one made by Anton). <list> tag was there and later during git pages refactoring was never replaced. I will scan all git pages at the beginning of 2.0 and replace that. Just for the record <list> tag is nothing new in HTML and HTML 5 also supports it: http://woork.blogspot.com/2009/09/html-lists-whats-news-in-html-5.html (In reply to comment #2) > Just for the record <list> tag is nothing new in HTML and HTML 5 also > supports it: > http://woork.blogspot.com/2009/09/html-lists-whats-news-in-html-5.html I understand <ul> <ol> etc., but the code has <list>. Am i missing something? (In reply to comment #3) > I understand <ul> <ol> etc., but the code has <list>. Am i missing something? huh... the code now uses divs for items, I suppose it used to use uls or ols inside and that's where did the list tag here come from. I now totally agree that it should be changed to div. In html lists are defined as follows: <ul> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> <ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> No <list>. Am I missing something? And as I recall, there was no <li> elements on this page. It must be just a mistake, see my comment 1. +1 for switching to <elephant>. Fix with 51af3dfcc5967a55330775762aa8cd00b52844da |