blob: fb9e23eeced976e17557c5d455fccbf7f41530fe (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!-- Quirks on purpose -->
<head>
<style>
body { color: red; }
.Foo { color: green; }
</style>
<body onload="document.body.className = 'abc Foo'" class="abc">
This should be green
</body>
</head>
|