mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<?xml version="1.0" encoding="utf-8"?>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Dropping image on vertical page scrollbar</title>
|
|
<style type="text/css">
|
|
p:first-child
|
|
{padding-left:1em;}
|
|
div
|
|
{width:1ex;
|
|
margin-left:auto;}
|
|
img
|
|
{width:5px;
|
|
height:5px;}
|
|
body
|
|
{height:3000px;}
|
|
</style>
|
|
<script type="application/ecmascript">
|
|
function dragImage()
|
|
{event.dataTransfer.effectAllowed = 'copy';}
|
|
function dropImage(event)
|
|
{document.querySelector('div').firstChild.nodeValue = 'P A S S';}
|
|
</script>
|
|
</head>
|
|
<body ondragenter="event.preventDefault()" ondragover="return false">
|
|
<p><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEElEQVR42mNgaGD4D8YwBgAw9AX9Y9zBwwAAAABJRU5ErkJggg==" alt="PNG green pixel" ondragstart="dragImage()" ondragend="dropImage(event)"/></p>
|
|
<p>Drag little square above and drop it on vertical scrollbar. Word PASS should appear near scrollbar once you drop it.</p>
|
|
<div>→ → → → → → → → → → → → → → → → → → → → → → → → → → → → → → → → → → → →</div>
|
|
</body>
|
|
</html> |