tor-browser

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

events-contenteditable-manual.tentative.html (696B)


      1 <!doctype html>
      2 <meta charset=utf-8>
      3 <title>Selection drag and drop: events for contenteditable</title>
      4 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 <style>
      7 [data-placeholder]:empty::before { content: attr(data-placeholder); }
      8 </style>
      9 <body data-expected-events="
     10  b:drop:,
     11  a:beforeinput:deleteByDrag,
     12  a:input:deleteByDrag,
     13  b:beforeinput:insertFromDrop,
     14  b:textInput:,
     15  b:input:insertFromDrop">
     16 <div><input id=a data-select="0,7" value="Drag me"></div>
     17 <div contenteditable=true id=b data-placeholder="...to here"></div>
     18 <script src="/uievents/textInput/support/common.js"></script>
     19 <script src="support/events.js"></script>