mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 15:28:39 +09:00
10 lines
216 B
HTML
10 lines
216 B
HTML
|
|
<!-- 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>
|