mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
18 lines
307 B
HTML
18 lines
307 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.getElementById("c").style.content = "'x'";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body style="display: inline-flex;" onload="boom();"><div></div><div style="display: table-caption;"></div><canvas id="c"></canvas></body>
|
|
|
|
</html>
|