mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 02:43:07 +09:00
29 lines
290 B
HTML
29 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>
|