summaryrefslogtreecommitdiffstats
path: root/third_party/webdriver/test_data/tables.html
blob: a2bc957b8884a4f245a3a1c538c9e15580cf53be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <title>Here be tables</title>
</head>
<body>

<table id="base">
  <tr>
    <td>Hello</td>
    <td>World</td>
    <td>(Cheese!)</td>
  </tr>
</table>

<table>
  <tr id="hidden_text">
    <td>some text
      <div style="display: none;">some more text</div>
    </td>
  </tr>
</table>

<table>
  <tr>
    <th colspan="3" id="th1">Heading</th>
  </tr>
  <tr>
    <td id="td1">Data 1</td>
    <td colspan="2" id="td2">Data 2</td>
  </tr>
</table>

</body>
</html>