mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 13:48:23 +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
19 lines
335 B
HTML
19 lines
335 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Reference</title>
|
|
<style>
|
|
p {
|
|
color: fuchsia;
|
|
}
|
|
div {
|
|
color: orange;
|
|
}
|
|
h4 {
|
|
color: blue;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>This text should be fuchsia.</p>
|
|
<div>This text should be orange.</div>
|
|
<h4>This text should be blue.</h4>
|
|
</body>
|