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