mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
13 lines
270 B
HTML
13 lines
270 B
HTML
|
<!-- This test needs to be in quirks mode -->
|
||
|
<html>
|
||
|
<head>
|
||
|
<style>
|
||
|
body { color: red; }
|
||
|
body#foo { color: green; }
|
||
|
</style>
|
||
|
</head>
|
||
|
<body onload="document.body.offsetWidth; document.body.id = 'FOO'">
|
||
|
This should be green
|
||
|
</body>
|
||
|
</html>
|