- From: Gérard Talbot <css21testsuite@gtalbot.org>
- Date: Wed, 28 Jul 2010 09:44:41 -0700
- To: "public-css-testsuite@w3.org" <public-css-testsuite@w3.org>
> We've released the CSS2.1 Test Suite Beta 2 today:
> http://test.csswg.org/suites/css2.1/20100727/
> Please send all comments to public-css-testsuite@w3.org!
1-
http://test.csswg.org/suites/css2.1/20100727/indices.css
.assert, .assert > li {
list-style-type: none;
font-size: smaller;
(...)
<ul class="assert">
<li>
The indices.css stylesheet makes both the <ul class="assert"> and the
<li> inside the .assert font-size smaller: the 2 are combined, are
applied consecutively which makes the text of assertion very small.
Proposed alternative:
.assert {
list-style-type: none;
font-size: smaller;
font-style: italic;
color: gray;
margin: 0;
padding: 0;
text-indent: 0;
}
.assert > li {
margin: 0;
padding: 0;
}
2-
The test suite does not always link to <link rel="help" href="..."> in
testcases. E.g.:
C.5.76 Section 16.6.1 The 'white-space' processing model
is listed in the #toc of the spec. So, it was <link rel="help">-ed in
http://test.csswg.org/suites/css2.1/20100727/html4/white-space-007.htm
but the test suite does not mention this testcase in the
http://test.csswg.org/suites/css2.1/20100727/html4/chapter-C.html
regards, Gérard
--
Contributions to the CSS 2.1 test suite:
http://www.gtalbot.org/BrowserBugsSection/css21testsuite/
CSS 2.1 test suite (beta 2; July 27th 2010):
http://test.csswg.org/suites/css2.1/20100727/html4/toc.html
CSS 2.1 test suite contributors:
http://test.csswg.org/source/contributors/
Received on Wednesday, 28 July 2010 16:45:16 UTC