mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
30 lines
290 B
HTML
30 lines
290 B
HTML
<html>
|
|
|
|
<head>
|
|
|
|
<style id="style"></style>
|
|
<script>
|
|
|
|
function hmm()
|
|
{
|
|
document.getElementById("style").textContent = "td { overflow: scroll; } table { background: lightblue; }";
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
<body onload="hmm()">
|
|
|
|
|
|
|
|
<table><tr><td>Foopy</td></tr></table>
|
|
|
|
|
|
</body>
|
|
</html>
|