Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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>