mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
19 lines
313 B
HTML
19 lines
313 B
HTML
<!DOCTYPE html>
|
|
<html style="position: fixed;">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var cp = document.caretPositionFromPoint(0, 1);
|
|
document.documentElement.removeChild(document.body);
|
|
cp.getClientRect();
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body style="margin: 0;" onload="boom();"></body>
|
|
</html>
|