tor-browser

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

events-textarea-manual.tentative.html (602B)


      1 <!doctype html>
      2 <meta charset=utf-8>
      3 <title>Selection drag and drop: events for &lt;textarea></title>
      4 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 <body data-expected-events="
      7  b:drop:,
      8  a:beforeinput:deleteByDrag,
      9  a:input:deleteByDrag,
     10  b:beforeinput:insertFromDrop,
     11  b:textInput:,
     12  b:input:insertFromDrop">
     13 <div><input id=a data-select="0,7" value="Drag me"></div>
     14 <div><textarea id=b placeholder="...to here"></textarea></div>
     15 <script src="/uievents/textInput/support/common.js"></script>
     16 <script src="support/events.js"></script>