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