File: table_replace_child.tts

package info (click to toggle)
librnd 4.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,812 kB
  • sloc: ansic: 126,990; sh: 2,602; makefile: 2,145; awk: 7
file content (40 lines) | stat: -rw-r--r-- 649 bytes parent folder | download | duplicates (6)
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
# test with a lihata doc in which the root is a li
load_doc D1 table_corners.lht
# N1 is a non-empty, N2 is an empty table
root N1 D1
path N1 /1
root N2 D1
path N2 /0

echo --- Original table:
print_tree N1

equ_node N3 N1
table_cell N3 0 0

new_text N4 for_replacing

table_replace_child N1 N3 N4

echo --- After replacing (0, 0) cell:
print_tree N1

equ_node N3 N1
table_cell N3 2 1

new_text N4 for_replacing
table_replace_child N1 N3 N4

echo --- After replacing (2, 1) cell:
print_tree N1

equ_node N3 N1
table_cell N3 3 1

new_text N4 for_replacing
table_replace_child N1 N3 N4

echo ---After replacing (3, 1) cell:
print_tree N1

free_doc D1