File: table_test.html

package info (click to toggle)
aseba-plugin-blockly 20180211%2Bgit-2
  • links: PTS
  • area: non-free
  • in suites: buster
  • size: 64,472 kB
  • sloc: xml: 7,976; python: 2,314; sh: 261; lisp: 24; makefile: 10
file content (175 lines) | stat: -rw-r--r-- 2,330 bytes parent folder | download | duplicates (13)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html><!-- DO NOT EDIT. This file auto-generated by generate_closure_unit_tests.js --><!--
Copyright 2017 The Closure Library Authors. All Rights Reserved.

Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
--><html><head><meta charset="UTF-8">

<script src="../base.js"></script>

<script>goog.require('goog.editor.TableTest');</script>
<title>Closure Unit Tests - goog.editor.TableTest</title><!--
Copyright 2017 The Closure Library Authors. All Rights Reserved.

Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<style>
 table {
      border:1px outset #777;
      margin-top: 1em;
      empty-cells: show;
    }
    td, th {
      border:1px inset #777;
    }
</style>
</head><body><table id="test-basic">
 <tbody><tr>
  <th>
   Number
  </th>
  <th>
   Color
  </th>
  <th>
   Speed
  </th>
 </tr>
 <tr>
  <td>
   One
  </td>
  <td>
   Red
  </td>
  <td>
   60
  </td>
 </tr>
 <tr>
  <td>
   Two
  </td>
  <td>
   Blue
  </td>
  <td>
   75
  </td>
 </tr>
 <tr>
  <td>
   Three
  </td>
  <td>
   Orange
  </td>
  <td>
   88
  </td>
 </tr>
</tbody></table>
<table id="test-torture">
 <tbody><tr>
  <th rowspan="2">
   Left 0+1
   <br>
  </th>
  <th colspan="2">
   Middle, Right 0
  </th>
 </tr>
 <tr>
  <td colspan="2" rowspan="2">
   Middle, Right 1 + 2
   <br>
  </td>
 </tr>
 <tr>
  <th>
   Left 2
  </th>
 </tr>
 <tr>
  <th>
   Left 3
  </th>
  <td>
   Middle 3
  </td>
  <td>
   Right 3
  </td>
 </tr>
 <tr>
  <th colspan="3">
   Left, Middle, Right 4
  </th>
 </tr>
 <tr>
  <th colspan="2" rowspan="2">
   Left, Middle 5+6
   <br>
  </th>
  <td rowspan="4">
   Right 5+6+7+8
  </td>
 </tr>
 <tr>
 </tr>
 <tr>
  <th rowspan="2">
   Left 7+8
  </th>
  <td>
   Middle 7
  </td>
 </tr>
 <tr>
  <td>
   Middle 8
  </td>
 </tr>
</tbody></table>
<table id="test-nested">
 <tbody><tr>
  <td>
   One
  </td>
  <td>
   Two
  </td>
  <td>
   <table>
    <tbody><tr>
     <td>
      Nested cell 1
     </td>
     <td>
      Nested cell 2
     </td>
    </tr>
    <tr>
     <td>
      Nested cell 2
     </td>
     <td>
      Nested cell 3
     </td>
    </tr>
   </tbody></table>
  </td>
 </tr>
 <tr>
  <td>
   Four
  </td>
  <td>
   Five
  </td>
  <td>
   Six
  </td>
 </tr>
</tbody></table></body></html>