mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-04-05 19:24:57 +00:00
24 lines
608 B
HTML
24 lines
608 B
HTML
<?xml version="1.0" encoding="utf-8"?>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Dragging two lines of text selection between textareas</title>
|
|
<style type="text/css">
|
|
textarea
|
|
{width:300px;
|
|
height:100px;}
|
|
</style>
|
|
</head>
|
|
<body onload="var t = document.querySelector('textarea');t.select();t.setSelectionRange(25,56)">
|
|
<p>
|
|
<textarea>
|
|
Here is textarea
|
|
with selection that
|
|
spans two lines.
|
|
Drag selected text to the textarea below.
|
|
Selected text should be moved to second textarea once you drop it there.
|
|
</textarea>
|
|
</p>
|
|
<p><textarea placeholder="Drop selection here"/></p>
|
|
</body>
|
|
</html>
|