mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
366 B
HTML
24 lines
366 B
HTML
<html style="direction: rtl;">
|
|
<head>
|
|
<style>
|
|
|
|
body:after { content: '0'; }
|
|
body:first-letter { float: right; }
|
|
|
|
</style>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.style.direction = "";
|
|
document.documentElement.offsetHeight;
|
|
document.documentElement.style.textIndent = "3px";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"> ‮</body>
|
|
|
|
</html>
|