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 Interactive Tests. Scripts are able to append 7# HTML to the document, including buttons that can call submit_button() on 8# click and retrieve the results. 9--> 10<html> 11 <head> 12 <title>Interactive Test</title> 13 <script language="Javascript"> 14 window.__ready = 0; 15 window.__result = null; 16 function submit_button(value) { 17 window.__result = value; 18 window.__ready = 1; 19 }; 20 </script> 21 </head> 22 <body> 23 24 </body> 25</html> 26