| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../js/resources/js-test-pre.js"></script> | 4 <script src="../js/resources/js-test-pre.js"></script> |
| 5 <style> | 5 <style> |
| 6 #drag { | 6 #drag { |
| 7 border: 1px solid black; | 7 border: 1px solid black; |
| 8 height: 200px; | 8 height: 200px; |
| 9 width: 200px; | 9 width: 200px; |
| 10 } | 10 } |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 </div> | 182 </div> |
| 183 <div>Drag handler: <select id="dragMethod"><option>Legacy</option><option>DataTr
ansferItemList</option></select></div> | 183 <div>Drag handler: <select id="dragMethod"><option>Legacy</option><option>DataTr
ansferItemList</option></select></div> |
| 184 <div>Drop handler: <select id="dropMethod"><option>Legacy</option><option>DataTr
ansferItemList</option></select></div> | 184 <div>Drop handler: <select id="dropMethod"><option>Legacy</option><option>DataTr
ansferItemList</option></select></div> |
| 185 <div id="console"></div> | 185 <div id="console"></div> |
| 186 <script> | 186 <script> |
| 187 description("Tests drag'n drop and well as DataTransferItemList"); | 187 description("Tests drag'n drop and well as DataTransferItemList"); |
| 188 window.jsTestIsAsync = true; | 188 window.jsTestIsAsync = true; |
| 189 | 189 |
| 190 runNext(); | 190 runNext(); |
| 191 </script> | 191 </script> |
| 192 <script src="../js/resources/js-test-post.js"></script> | |
| 193 </body> | 192 </body> |
| 194 </html> | 193 </html> |
| OLD | NEW |