mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
10 lines
195 B
HTML
10 lines
195 B
HTML
<body onload="die()">
|
|
<script>
|
|
function die() {
|
|
document.body.offsetWidth;
|
|
document.removeChild(document.documentElement);
|
|
document.dir = "rtl";
|
|
}
|
|
</script>
|
|
</body>
|