summaryrefslogtreecommitdiff
path: root/tests/end2end/data/editor.html
blob: 4d4ad467ae8cd6872ba21e819ac4508444510706 (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>Editor</title>
        <script type="text/javascript">
            function log_text() {
                elem = document.getElementById("qute-textarea");
                console.log("text: " + elem.value);
            }
        </script>
    </head>
    <body>
        <p>This is editor.html</p>
        <textarea id="qute-textarea" oninput="log_text()"></textarea>
    </body>
</html>