mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-07 16:30:36 +00:00
18 lines
264 B
HTML
18 lines
264 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var sheet = document.createElement("style");
|
||
|
sheet.scoped = true;
|
||
|
document.documentElement.appendChild(sheet);
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="boom();"></body>
|
||
|
</html>
|