Further to my very recent concerns that
<ol type="a">
gives digits. type="a" was "depreciated" in HTML 4.1. "depreciated" means to me to be of a lesser value or to be prepared it may be abandoned. It does not, in my version of English English, mean removed from the HTML specification. Therefore it should function 'normally' in modern browsers like FF.
HTML 5 has officially resurrected it.
I now discover that
<ol style="list-style-type:lower-alpha;">
also produces digits.
Where should a BUG report be filled ? With Centos, the provider of Firefox ESR 24.3.0, or its parent Red Hat ?
Thanks.
On 2/13/2014 20:19, Always Learning wrote:
Further to my very recent concerns that
<ol type="a">
gives digits. type="a" was "depreciated" in HTML 4.1. "depreciated" means to me to be of a lesser value
The word in the spec is certainly "deprecated". No "i". Depreciated is a different word.
I now discover that
<ol style="list-style-type:lower-alpha;">
also produces digits.
It works here. I tested with this document:
<html> <head> <title>Test</title> <head>
<body> <ol style="list-style-type:lower-alpha"> <li>Hello</li> <li>World</li> </ol> </body> </html>
Where should a BUG report be filled ? With Centos, the provider of Firefox ESR 24.3.0, or its parent Red Hat ?
The Mozilla Bugzilla: https://bugzilla.mozilla.org/
But first, be sure of your facts. I suspect Firefox isn't the problem.
On Thu, 2014-02-13 at 20:30 -0700, Warren Young wrote:
The word in the spec is certainly "deprecated". No "i". Depreciated is a different word.
Thank you. You are correct :-)
It works here. I tested with this document:
<html> <head> <title>Test</title> <head>
<body> <ol style="list-style-type:lower-alpha"> <li>Hello</li> <li>World</li> </ol> </body>
</html>
I copied your code and ran a test which produced the correct results. I ran another test with embedded OL and again it worked properly, much to my surprise.
Have cancelled that bug report. I'm glad its not a bug. Just need to discover the cause.
Thank you very much for your extremely useful assistance.
Paul.