blob: df396aafd1990c6aaefbcaed655a26af75b41aa4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!-- Check if invalid color declarations are discarded. The text should be red. -->
<!doctype html>
<style>
p {
color: red;
color: reddit;
color: 0; /* valid in quirks mode */
}
</style>
<p>text
|