mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12 lines
360 B
HTML
12 lines
360 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body::first-line { color: purple; }
|
|
</style>
|
|
<body style="width: 0; color: red"><span id="x" style="visibility: hidden">This is some text</span>
|
|
<script type="text/javascript">
|
|
document.body.offsetWidth;
|
|
document.getElementById("x").style.visibility = "visible";
|
|
document.body.style.color = "green";
|
|
</script>
|
|
</body>
|