mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
28
testing/web-platform/tests/html/editing/dnd/images/016.xhtml
Normal file
28
testing/web-platform/tests/html/editing/dnd/images/016.xhtml
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>Dropping image on vertical scrollbar of a scrollable block element</title>
|
||||
<style type="text/css">
|
||||
div[ondragenter]
|
||||
{width:2em;
|
||||
height:5em;
|
||||
margin-top:1em;
|
||||
font-size:1.5em;
|
||||
overflow-y:scroll;}
|
||||
p:first-child
|
||||
{padding-left:1em;}
|
||||
img
|
||||
{width:5px;
|
||||
height:5px;}
|
||||
</style>
|
||||
<script type="application/ecmascript">
|
||||
function checkImage(event)
|
||||
{document.querySelector('div').firstChild.nodeValue = (document.querySelector('img').getAttribute('src') == event.dataTransfer.getData('text/uri-list').replace(/\r\n$/,''))?'P A S S':'F A I L';}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<p><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEElEQVR42mNgaGD4D8YwBgAw9AX9Y9zBwwAAAABJRU5ErkJggg==" alt="PNG green pixel" ondragstart="event.dataTransfer.effectAllowed = 'copy'"/></p>
|
||||
<p>Drag little square above and drop it on scrollbar below. You should see word PASS when you drop it on scrollbar.</p>
|
||||
<div ondragenter="event.preventDefault()" ondragover="return false" ondrop="checkImage(event)">→ → → → → → → → → → → → → → → → → → → →</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue