File: getcellsbetween.html

package info (click to toggle)
ckeditor 4.16.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 258,804 kB
  • sloc: javascript: 239,590; sh: 184; makefile: 64; python: 37; php: 15; xml: 5
file content (54 lines) | stat: -rw-r--r-- 943 bytes parent folder | download | duplicates (4)
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
<textarea id="getCellsBetween">
	<table border="1">
		<tr>
			<td id="first" rowspan="2">Rowspan</td>
			<td id="second" colspan="2">Colspan</td>
		</tr>
		<tr>
			<td id="third">Normal</td>
			<td id="last">Last</td>
		</tr>
	</table>
</textarea>

<textarea id="getCellsBetween-irregular">
	<table border="1">
		<tr>
			<td>Cell 1.1</td>
			<td>Cell 1.2</td>
			<td>Cell 1.3</td>
			<td>Cell 1.4</td>
		</tr>
		<tr>
			<td>Cell 2.1</td>
			<td>Cell 2.2</td>
			<td>Cell 2.3</td>
		</tr>
		<tr>
			<td>Cell 3.1</td>
			<td>Cell 3.2</td>
		</tr>
		<tr>
			<td>Cell 4.1</td>
			<td>Cell 4.2</td>
			<td>Cell 4.3</td>
			<td>Cell 4.4</td>
		</tr>
	</table>
</textarea>

<textarea id="getCellsBetween-caption">
	<table border="1">
		<caption>Simple caption</caption>
			<tr>
				<td>Cell 1.1</td>
				<td>Cell 1.2</td>
			</tr>
			<tr>
				<td>Cell 2.1</td>
				<td>Cell 2.2</td>
			</tr>
	</table>
</textarea>

<iframe id="focusIframe"></iframe>