зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
336 B
HTML
15 строки
336 B
HTML
<!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>
|