- From: Gérard Talbot <css21testsuite@gtalbot.org>
- Date: Fri, 8 Apr 2011 20:39:56 -0700
- To: "Arron Eicholz" <Arron.Eicholz@microsoft.com>
- Cc: "Public CSS test suite mailing list" <public-css-testsuite@w3.org>
Arron,
http://test.csswg.org/suites/css2.1/20110323/html4/list-style-013.htm
(RC6)
http://test.csswg.org/suites/css2.1/nightly-unstable/html4/list-style-013.htm
http://test.csswg.org/suites/css2.1/20110323/html4/list-style-014.htm
(RC6)
http://test.csswg.org/suites/css2.1/nightly-unstable/html4/list-style-014.htm
http://test.csswg.org/suites/css2.1/20110323/html4/list-style-015.htm
(RC6)
http://test.csswg.org/suites/css2.1/nightly-unstable/html4/list-style-015.htm
"
A value of 'none' within the 'list-style' property sets whichever of
'list-style-type' and 'list-style-image' are not otherwise specified to
'none'. However, if both are otherwise specified, the declaration is in
error (and thus ignored).
"
http://www.w3.org/TR/CSS21/generate.html#lists
So, in list-style-013
div
{
display: list-item;
list-style: inside none square;
}
should have
list-style: inside none square;
ignored. And only
display: list-item;
should be valid. So, the expected result for that list-style-013
testcase should be an outside list-marker bullet (filled disc).
http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Ftest.csswg.org%2Fsuites%2Fcss2.1%2F20110323%2Fhtml4%2Flist-style-013.htm&profile=css21&usermedium=all&warning=2&lang=en
----------------
In list-style-014
div
{
display: list-item;
list-style: none square inside;
}
should have
list-style: none square inside;
ignored. And only
display: list-item;
should be valid. So, the expected result for that list-style-014
testcase should be an outside list-marker bullet (filled disc).
http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Ftest.csswg.org%2Fsuites%2Fcss2.1%2F20110323%2Fhtml4%2Flist-style-014.htm&profile=css21&usermedium=all&warning=2&lang=en
----------------
In list-style-015
div
{
display: list-item;
list-style: none inside square;
}
should have
list-style: none inside square;
ignored. And only
display: list-item;
should be valid. So, the expected result for that list-style-015
testcase should be an outside list-marker bullet (filled disc).
http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Ftest.csswg.org%2Fsuites%2Fcss2.1%2F20110323%2Fhtml4%2Flist-style-015.htm&profile=css21&usermedium=all&warning=2&lang=en
Right now, Firefox 3.6.16 and Opera 11.01 fails those 3 tests.
Chrome 10.0.648.204 passes these 3 testcases and also spots and reports
the CSS parsing error.
Konqueror 4.6.1 only fails because it sets bullets inside, not outside.
regards, Gérard
--
Contributions to the CSS 2.1 test suite:
http://www.gtalbot.org/BrowserBugsSection/css21testsuite/
CSS 2.1 Test suite RC6, March 23rd 2011
http://test.csswg.org/suites/css2.1/20110323/html4/toc.html
CSS 2.1 test suite contributors:
http://test.csswg.org/source/contributors/
Received on Saturday, 9 April 2011 03:40:27 UTC