mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
fb054fc73e
--HG-- extra : rebase_source : a167ccf140387fa50e3668422b5a74bea0527255
20 lines
381 B
HTML
20 lines
381 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head contenteditable="true">
|
|
<script type="text/javascript">
|
|
<![CDATA[
|
|
|
|
function boom()
|
|
{
|
|
var r = document.createRange();
|
|
r.selectNode(document.body);
|
|
r.deleteContents();
|
|
try { document.execCommand("selectAll", false, null); } catch(e) { }
|
|
}
|
|
|
|
]]>
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();" contenteditable="true"></body>
|
|
</html>
|