mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
Automatic update from web-platform-tests Add references for CSS2/sec5 Some CSS2/sec5 tests were missing references. This adds in references for the remaining sec5 tests without references except for first-letter-000.xht. -- Add in references for css/CSS2/selector tests All CSS2/selector tests were missing references. This change adds in references for these tests. -- wpt-commits: 2eb1f3a046ffccef07c831897f262fbcc31ec8e8, 69e5802277ed34ad99092743b4313ab8eec7323e wpt-pr: 16061
15 lines
361 B
HTML
15 lines
361 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Reference</title>
|
|
<style>
|
|
p {
|
|
color: fuchsia;
|
|
}
|
|
span {
|
|
color: silver;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>The first line of this paragraph should be fuchsia (same as in the next block).<br /><span>Filler text.</span></p>
|
|
<p>Lorem ipsum dolor.<br /><span>Filler text.</span></p>
|
|
</body>
|