| OLD | NEW | 
|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> | 
| 2 <html> | 2 <html> | 
| 3 <head> | 3 <head> | 
| 4 <style> | 4 <style> | 
| 5 #dragme:-webkit-drag | 5 #dragme:-webkit-drag | 
| 6 { | 6 { | 
| 7     display: none; | 7     display: none; | 
| 8 } | 8 } | 
| 9 </style> | 9 </style> | 
| 10 <script> | 10 <script> | 
| (...skipping 19 matching lines...) Expand all  Loading... | 
| 30     eventSender.mouseUp(); | 30     eventSender.mouseUp(); | 
| 31 } | 31 } | 
| 32 window.addEventListener('load', runTest); | 32 window.addEventListener('load', runTest); | 
| 33 </script> | 33 </script> | 
| 34 </head> | 34 </head> | 
| 35 <body> | 35 <body> | 
| 36 <div id="dragme" draggable="true">To test, try dragging this div around. It shou
    ldn't crash, and PASS should appear below when you end the drag.</div> | 36 <div id="dragme" draggable="true">To test, try dragging this div around. It shou
    ldn't crash, and PASS should appear below when you end the drag.</div> | 
| 37 <div id="console"></div> | 37 <div id="console"></div> | 
| 38 </body> | 38 </body> | 
| 39 </html> | 39 </html> | 
| OLD | NEW | 
|---|