summaryrefslogtreecommitdiff
path: root/src/zope/tal/tests/input/test14.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/zope/tal/tests/input/test14.xml')
-rw-r--r--src/zope/tal/tests/input/test14.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/zope/tal/tests/input/test14.xml b/src/zope/tal/tests/input/test14.xml
new file mode 100644
index 0000000..c596135
--- /dev/null
+++ b/src/zope/tal/tests/input/test14.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" ?>
+<html xmlns:tal="http://xml.zope.org/namespaces/tal">
+
+<table>
+ <tr>
+ <td tal:repeat="x python:['car', 'bike', 'broomstick']" tal:content="x">
+ </td>
+ </tr>
+</table>
+
+<p>
+ <span tal:repeat="x python:['Harry', 'Ron', 'Hermione']" tal:replace="x" />
+</p>
+
+</html>