mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-04-19 22:17:03 +00:00
30 lines
778 B
HTML
30 lines
778 B
HTML
<!doctype html>
|
|
<title>drag & drop - dragging elements by children that are positioned outside them</title>
|
|
<style type="text/css">
|
|
div {
|
|
height: 200px;
|
|
width: 200px;
|
|
background: blue;
|
|
white-space: nowrap;
|
|
position: relative;
|
|
}
|
|
span {
|
|
display: block;
|
|
top: 0;
|
|
left: 210px;
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: orange;
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
window.onload = function () {
|
|
document.getElementsByTagName('div')[0].ondragstart = function (e) {
|
|
e.dataTransfer.effectAllowed = 'copy';
|
|
e.dataTransfer.setData('text','dummy text');
|
|
};
|
|
};
|
|
</script>
|
|
<div draggable="true"><span></span></div>
|
|
<p>Drag the orange square sideways. Pass if the drag placeholder shows that both the blue and orange squares are being dragged.</p> |