tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

frames.html (553B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>drag and drop should allow dragging of iframes and object iframes</title>
      5    <style type="text/css">
      6 iframe, object {
      7  border: 10px solid orange;
      8  background: blue;
      9  padding: 10px;
     10  height: 100px;
     11  width: 100px;
     12 }
     13    </style>
     14  </head>
     15  <body>
     16 
     17    <p>It should be possible to drag the following two blocks by both their orange and blue borders.</p>
     18    <p><iframe draggable="true" src="frames-1.html"></iframe></p>
     19    <p><object draggable="true" data="frames-1.html"></object></p>
     20 
     21  </body>
     22 </html>