- From: Gérard Talbot <css21testsuite@gtalbot.org>
- Date: Sat, 7 Jan 2012 19:08:35 -0800
- To: "Arron Eicholz" <arron.eicholz@microsoft.com>
- Cc: "Public CSS test suite mailing list" <public-css-testsuite@w3.org>
Arron,
[RC6]
http://test.csswg.org/suites/css2.1/20110323/html4/text-decoration-propagation-002.htm
[nightly-unstable]
http://test.csswg.org/suites/css2.1/nightly-unstable/html4/text-decoration-propagation-002.htm
<meta name="assert" content="Text-decoration is applied to anonymous
inline element for block level elements with text not in inline
element.">
<style type="text/css">
div
{
text-decoration: underline;
}
</style>
</head>
<body>
<p>Test passes if all the "Filler Text" below has a line under
it.</p>
<div>
line 19 <span>Filler Text</span>
<span>Filler Text</span>
line 21 <span>Filler Text</span>
</div>
The problem with the test is that, as coded, there are no anonymous
inline elements.
Proposal:
<div>
line 19 Filler Text
<span>Filler Text</span>
line 21 Filler Text
</div>
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 harness:
http://test.csswg.org/harness/
Contributing to to CSS 2.1 test suite:
http://www.gtalbot.org/BrowserBugsSection/css21testsuite/web-authors-contributions-css21-testsuite.html
Received on Sunday, 8 January 2012 03:09:07 UTC