~testplan-team/testplan/source-collection

« back to all changes in this revision

Viewing changes to htmlunit-2.4/src/test/resources/DWR/2.0.5/livehelp/index.html

  • Committer: edA-qa mort-ora-y
  • Date: 2010-04-07 10:54:57 UTC
  • Revision ID: eda-qa@disemia.com-20100407105457-g46bvbsrjqtjujab
updating hmltunit src

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
 
<html xmlns="http://www.w3.org/1999/xhtml">
3
 
<head>
4
 
  <title>Operator Assisted Form Fill</title>
5
 
  <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
6
 
  <script type='text/javascript' src='../dwr/engine.js'> </script>
7
 
  <script type='text/javascript' src='../dwr/util.js'> </script>
8
 
  <script type='text/javascript' src='../dwr/interface/LiveHelp.js'> </script>
9
 
  <script type="text/javascript" src='index.js'> </script>
10
 
  <link rel="stylesheet" type="text/css" href="../generic.css" />
11
 
</head>
12
 
 
13
 
<body onload="init()">
14
 
<div id="page-title">[
15
 
  <a href="http://getahead.org/dwr/">DWR Website</a> |
16
 
  <a href="..">Web Application Index</a>
17
 
]</div>
18
 
 
19
 
<h1>Operator Assisted Form Fill</h1>
20
 
 
21
 
<table class="form plain">
22
 
  <tr>
23
 
    <th>Name:</th>
24
 
    <td>
25
 
      <div id="helpNameTip" class="tip" onclick='document.getElementById("helpName").focus();'></div>
26
 
      <input type=text" id="helpName" style="width:200px;" onkeyup="notifyTyping(this)" onfocus="notifyFocus(this)" onblur="notifyBlur(this)"/>
27
 
    </td>
28
 
  </tr>
29
 
 
30
 
  <tr>
31
 
    <th>Email:</th>
32
 
    <td>
33
 
      <div id="helpEmailTip" class="tip" onclick='document.getElementById("helpEmail").focus();'></div>
34
 
      <input type=text" id="helpEmail" style="width:200px;" onkeyup="notifyTyping(this)" onfocus="notifyFocus(this)" onblur="notifyBlur(this)"/>
35
 
    </td>
36
 
  </tr>
37
 
 
38
 
  <tr>
39
 
    <th>Account Num:</th>
40
 
    <td>
41
 
      <div id="helpAcctTip" class="tip" onclick='document.getElementById("helpAcct").focus();'></div>
42
 
      <input type=text" id="helpAcct" style="width:200px;" onkeyup="notifyTyping(this)" onfocus="notifyFocus(this)" onblur="notifyBlur(this)"/>
43
 
    </td>
44
 
  </tr>
45
 
 
46
 
  <tr>
47
 
    <th>Sort Code:</th>
48
 
    <td>
49
 
      <div id="helpSortTip" class="tip" onclick='document.getElementById("helpSort").focus();'></div>
50
 
      <input type=text" id="helpSort" style="width:200px;" onkeyup="notifyTyping(this)" onfocus="notifyFocus(this)" onblur="notifyBlur(this)"/>
51
 
    </td>
52
 
  </tr>
53
 
 
54
 
  <tr>
55
 
    <th>Address Line 1:</th>
56
 
    <td>
57
 
      <div id="helpAddr1Tip" class="tip" onclick='document.getElementById("helpAddr1").focus();'></div>
58
 
      <input type=text" id="helpAddr1" style="width:200px;" onkeyup="notifyTyping(this)" onfocus="notifyFocus(this)" onblur="notifyBlur(this)"/>
59
 
    </td>
60
 
  </tr>
61
 
 
62
 
  <tr>
63
 
    <th>Address Line 2:</th>
64
 
    <td>
65
 
      <div id="helpAddr2Tip" class="tip" onclick='document.getElementById("helpAddr2").focus();'></div>
66
 
      <input type=text" id="helpAddr2" style="width:200px;" onkeyup="notifyTyping(this)" onfocus="notifyFocus(this)" onblur="notifyBlur(this)"/>
67
 
    </td>
68
 
  </tr>
69
 
 
70
 
  <tr>
71
 
    <th>Address Line 3:</th>
72
 
    <td>
73
 
      <div id="helpAddr3Tip" class="tip" onclick='document.getElementById("helpAddr3").focus();'></div>
74
 
      <input type=text" id="helpAddr3" style="width:200px;" onkeyup="notifyTyping(this)" onfocus="notifyFocus(this)" onblur="notifyBlur(this)"/>
75
 
    </td>
76
 
  </tr>
77
 
 
78
 
  <tr>
79
 
    <th>Zipcode / Postcode:</th>
80
 
    <td>
81
 
      <div id="helpAddr4Tip" class="tip" onclick='document.getElementById("helpAddr4").focus();'></div>
82
 
      <input type=text" id="helpAddr4" style="width:200px;" onkeyup="notifyTyping(this)" onfocus="notifyFocus(this)" onblur="notifyBlur(this)"/>
83
 
    </td>
84
 
  </tr>
85
 
 
86
 
  <tr>
87
 
    <th>&nbsp;</th>
88
 
    <td><input id="submit" type="submit" value="Submit Query" onclick="process()"/></td>
89
 
  </tr>
90
 
</table>
91
 
 
92
 
</body>
93
 
</html>