• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!--
2# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5#
6# This html file is used by Semi-Auto Tests.  Scripts are to capture button
7# clicks from users or user input from a text box.
8-->
9<html>
10    <head>
11        <title>Bluetooth Dialog</title>
12        <script language="Javascript">
13            window.__ready = 0;
14            window.__result = null;
15            function submit_button(value) {
16                window.__result = value;
17                window.__ready = 1;
18            };
19            function get_text() {
20                window.__result = document.getElementById("textinput").value;
21                window.__ready = 1;
22            }
23        </script>
24    </head>
25    <body>
26
27    </body>
28</html>
29