mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 00:17:32 +09:00
12 lines
240 B
HTML
12 lines
240 B
HTML
|
|
<html><body>
|
||
|
|
<script type="text/javascript">
|
||
|
|
//function doBold(){
|
||
|
|
range = document.createRange();
|
||
|
|
newNode = document.createElement("b");
|
||
|
|
range.selectNodeContents(document);
|
||
|
|
|
||
|
|
range.surroundContents(newNode)
|
||
|
|
//}
|
||
|
|
</script>
|
||
|
|
text
|
||
|
|
</body></html>
|