mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-05 02:06:25 +00:00
21 lines
289 B
HTML
21 lines
289 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
/*
|
|
user_pref("layout.css.grid.enabled", true);
|
|
*/
|
|
|
|
function boom()
|
|
{
|
|
document.getElementById("r").appendChild(document.createTextNode("B"));
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<div id="r" style="display: grid;">A</div>
|
|
</body>
|
|
</html>
|