2 <title>drag
& drop - pressing tab while dragging
</title>
7 background-color: orange;
18 window
.onload = function() {
19 window
.scrollBy(0,1000);
20 document
.getElementsByTagName('div')[0].ondragstart = function(e
) {
21 e
.dataTransfer
.effectAllowed
= 'copy';
22 e
.dataTransfer
.setData('text', 'dummy text');
26 <noscript>Enable JavaScript and reload
</noscript>
27 <p>Drag the orange square. While still dragging, press the Tab key on your keyboard. Fail if the page scrolls.
</p>
28 <div draggable=
"true"></div>