summaryrefslogtreecommitdiff
path: root/tests/end2end/data/editor.html
blob: 9f5f9c0678760ef0a18444e53b68555f66caa58b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Textarea</title>
        <script type="text/javascript">
            function log_text() {
                elem = document.getElementById("qute-textarea");
                console.log("text: " + elem.value);
            }
        </script>
    </head>
    <body>
        <textarea id="qute-textarea"></textarea>
        <input type="button" id="qute-button" onclick="log_text()" value="Log text">
    </body>
</html>