mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
25 lines
446 B
HTML
25 lines
446 B
HTML
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
var s = document.getElementById("s");
|
|
s.appendChild(s.previousSibling);
|
|
s.parentNode.removeAttribute("class");
|
|
document.documentElement.offsetHeight;
|
|
s.appendChild(document.createTextNode(" "));
|
|
}
|
|
|
|
</script>
|
|
<style type="text/css">
|
|
|
|
.flfr:first-letter { float: right; }
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body onload="boom();" class="flfr">ﺷ <span id="s"></span></body>
|
|
|
|
</html>
|