mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
30 lines
431 B
HTML
30 lines
431 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
<style id="firstLetterSheet">
|
|
.fl:first-letter { color: red }
|
|
</style>
|
|
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.getElementById("parent").className = "";
|
|
document.body.offsetWidth;
|
|
document.getElementById("test").style.position = "relative";
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body onload="boom()">
|
|
|
|
<div class="fl" id="parent" style="color: green">
|
|
Foo <span id="test">Bar</span>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|