https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 509341bb915cd4af2a01eaea5ada89013ca8eae4 authored by Brian Birtles on 15 March 2018, 06:57:09 UTC
[web-animations] Update various references to an effect's `timing` member
Tip revision: 509341b
textarea-select-manual.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>HTMLTextAreaElement Test: select()</title>
<link rel="author" title="Intel" href="http://www.intel.com/">
<meta name="flags" content="interact">

<p>Test passes if content of the input area is selected</p>

<textarea id="test_obj">1234567</textarea>
<script>
var textarea = document.querySelector("#test_obj");
textarea.select();
</script>
back to top