tor-browser

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

touch_event_bubbles.html (331B)


      1 <!DOCTYPE html>
      2 
      3 <meta charset="UTF-8">
      4 <meta name="viewport" content="width=device-width,initial-scale=1">
      5 <title>Simulated touch events should bubble</title>
      6 
      7 <style>
      8  span {
      9    background-color: red;
     10    height: 100px;
     11    width: 100px;
     12  }
     13 </style>
     14 
     15 <div id="outer">
     16  <div id="inner">
     17    <span>Hello</span>
     18  </div>
     19 </div>