mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27 lines
449 B
HTML
27 lines
449 B
HTML
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
|
||
|
<style>
|
||
|
body, #tq { display: inline; }
|
||
|
#tq { position: relative; }
|
||
|
</style>
|
||
|
|
||
|
<style id="newstyle">
|
||
|
</style>
|
||
|
|
||
|
<script>
|
||
|
function foo()
|
||
|
{
|
||
|
document.getElementById("tq").style.position = "static";
|
||
|
document.getElementById("newstyle").textContent = "*:first-letter { }";
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body onload="foo()">
|
||
|
<table><tr><td>Table</td></tr></table>
|
||
|
<div id="tq">Div</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|