summaryrefslogtreecommitdiff
path: root/src/zope/tal/tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/zope/tal/tests')
-rw-r--r--src/zope/tal/tests/input/test38.html8
-rw-r--r--src/zope/tal/tests/output/test38.html6
2 files changed, 14 insertions, 0 deletions
diff --git a/src/zope/tal/tests/input/test38.html b/src/zope/tal/tests/input/test38.html
new file mode 100644
index 0000000..4bc3d1e
--- /dev/null
+++ b/src/zope/tal/tests/input/test38.html
@@ -0,0 +1,8 @@
+<span xmlns:i18n="http://xml.zope.org/namespaces/i18n">
+ <i18n:block ignore="">Test</i18n:block>
+ <a href="http://www.python.org"
+ title="Python"
+ i18n:ignore-attributes="title">
+ Python is a programming language.
+ </a>
+</span>
diff --git a/src/zope/tal/tests/output/test38.html b/src/zope/tal/tests/output/test38.html
new file mode 100644
index 0000000..8efb617
--- /dev/null
+++ b/src/zope/tal/tests/output/test38.html
@@ -0,0 +1,6 @@
+<span>
+ Test
+ <a href="http://www.python.org" title="Python">
+ Python is a programming language.
+ </a>
+</span>