mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
19 lines
447 B
HTML
19 lines
447 B
HTML
<html><head><script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
var dE = document.documentElement;
|
|
var head = document.getElementsByTagName("head")[0];
|
|
dE.removeChild(document.body);
|
|
dE.contentEditable = "true";
|
|
dE.focus();
|
|
dE.contentEditable = "false";
|
|
head.focus();
|
|
head.contentEditable = "true";
|
|
try {
|
|
document.execCommand("selectAll", false, "");
|
|
} catch(e) {
|
|
}
|
|
}
|
|
|
|
</script></head><body onload="boom();"></body></html> |