https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 95a4dac471e2eb2811555819a623676b597b5997 authored by kritisingh1 on 14 March 2018, 19:47:02 UTC
stops using wrappedJSObject in marionette executor
Tip revision: 95a4dac
textarea-select-event-manual.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>HTMLTextAreaElement Test: select event</title>
<link rel="author" title="Intel" href="http://www.intel.com/">
<meta name="flags" content="interact">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<p>Select any numberic characters in the text area below</p>

<form id="testForm" name="testForm">
  <textarea id="testtextarea">0123456789</textarea>
</form>

<script>

var textarea = document.getElementById("testtextarea");

setup({explicit_done : true});
setup({explicit_timeout : true});

on_event(textarea, "select", function(evt) {
  test(function() {
    assert_greater_than(textarea.value.substring(textarea.selectionStart, textarea.selectionEnd).length, 0, "Check if select event captured when text selected");
  });
  done();
});

</script>

<div id="log"></div>
back to top