blob: 892b8aee31273a9039caa9623629b1c6c9b119a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<script>
addEventListener('DOMContentLoaded', function() {
let root = document.documentElement;
while(root.firstChild) {
root.firstChild.remove();
}
document.designMode = 'on';
document.removeChild(document.documentElement);
document.execCommand('justifyleft', false, null);
});
</script>
</html>
|