mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|