Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/fixtures/table.html')
-rw-r--r--src/tests/fixtures/table.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/tests/fixtures/table.html b/src/tests/fixtures/table.html
new file mode 100644
index 000000000..f260c28a0
--- /dev/null
+++ b/src/tests/fixtures/table.html
@@ -0,0 +1,14 @@
+<table>
+<thead>
+<tr>
+<th>heading</th>
+<th>other heading</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>cell</td>
+<td>other cell</td>
+</tr>
+</tbody>
+</table>