зеркало из https://github.com/mozilla/gecko-dev.git
16 строки
333 B
HTML
16 строки
333 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
function boom()
|
|
{
|
|
document.designMode = 'on';
|
|
var otherDoc = document.implementation.createDocument("", "", null);
|
|
otherDoc.adoptNode(document.getElementById("t"));
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="setTimeout(boom, 0);"><textarea id="t"></textarea></body>
|
|
</html>
|