Test attribute value delimiters.

* tests/markups/valid-4.gmarkup: Test attribute value delimiters.

	* glib/gmarkup.c (g_markup_parse_context_parse): Support
	' and " as attribute value delimiters.  (#70677)
This commit is contained in:
Matthias Clasen
2002-02-09 22:08:10 +00:00
parent 6715999ca1
commit b08db9f35e
10 changed files with 96 additions and 11 deletions

View File

@@ -0,0 +1,8 @@
<foo>
<bar a='1'/>
<bar a="2"/>
<bar a='3"'/>
<bar a="4'"/>
<bar a="5''''"/>
</foo>