mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
16 lines
851 B
HTML
16 lines
851 B
HTML
<?xml version="1.0" encoding="utf-8"?>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Moving text between search inputs</title>
|
|
<script type="application/ecmascript">
|
|
function check()
|
|
{var input = document.querySelectorAll('input');
|
|
document.querySelector('p').firstChild.nodeValue = (input[0].value == '' && input[1].value == 'Selection')?'PASS':'FAIL';}
|
|
</script>
|
|
</head>
|
|
<body onload="document.querySelector('input').select()">
|
|
<p>Drag selected text to the blue box. Copy of selection should end up in the blue box once you drop it there.</p>
|
|
<p><input type="search" value="Selection"/></p>
|
|
<p><input ondragenter="event.preventDefault()" ondragover="event.preventDefault();event.dataTransfer.effectAllowed = 'move'" ondrop="window.setTimeout('check()',100)" type="search" placeholder="Drop selection here"/></p>
|
|
</body>
|
|
</html> |