mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
25 lines
328 B
HTML
25 lines
328 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
|
|
div { page-break-inside: avoid; }
|
|
div:first-letter { float: right; }
|
|
|
|
</style>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var d = document.getElementById('d');
|
|
d.removeChild(d.firstChild);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<div id="d">‫</div>
|
|
</body>
|
|
</html>
|