aboutsummaryrefslogtreecommitdiff
path: root/spec.txt
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-12-28 18:01:44 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-12-28 18:01:44 -0800
commit6c0423abcd1ba034ed7a33cfb1feef409f6fa658 (patch)
treecbceae6348b02dca7e9e08c36999e6a3f17c6c4c /spec.txt
parent32cba5183cae23eb5a48dfed610251fada605a81 (diff)
Fixed some HTML inline tests...
which were actually HTML blocks, given the changes to block parsing rules since these examples were written. Closes #382.
Diffstat (limited to 'spec.txt')
-rw-r--r--spec.txt25
1 files changed, 8 insertions, 17 deletions
diff --git a/spec.txt b/spec.txt
index a1eba2c..d2131b8 100644
--- a/spec.txt
+++ b/spec.txt
@@ -7749,16 +7749,9 @@ _boolean zoop:33=zoop:33 /></p>
Custom tag names can be used:
.
-<responsive-image src="foo.jpg" />
-
-<My-Tag>
-foo
-</My-Tag>
+Foo <responsive-image src="foo.jpg" />
.
-<responsive-image src="foo.jpg" />
-<My-Tag>
-foo
-</My-Tag>
+<p>Foo <responsive-image src="foo.jpg" /></p>
.
Illegal tag names, not parsed as HTML:
@@ -7806,11 +7799,9 @@ Missing [whitespace]:
Closing tags:
.
-</a>
-</foo >
+</a></foo >
.
-</a>
-</foo >
+<p></a></foo ></p>
.
Illegal attributes in closing tag:
@@ -7875,17 +7866,17 @@ foo <![CDATA[>&<]]>
Entities are preserved in HTML attributes:
.
-<a href="&ouml;">
+foo <a href="&ouml;">
.
-<a href="&ouml;">
+<p>foo <a href="&ouml;"></p>
.
Backslash escapes do not work in HTML attributes:
.
-<a href="\*">
+foo <a href="\*">
.
-<a href="\*">
+<p>foo <a href="\*"></p>
.
.