mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-05 00:46:16 +01:00
b08db9f35e
* tests/markups/valid-4.gmarkup: Test attribute value delimiters. * glib/gmarkup.c (g_markup_parse_context_parse): Support ' and " as attribute value delimiters. (#70677)
9 lines
85 B
Plaintext
9 lines
85 B
Plaintext
<foo>
|
|
<bar a='1'/>
|
|
<bar a="2"/>
|
|
<bar a='3"'/>
|
|
<bar a="4'"/>
|
|
<bar a="5''''"/>
|
|
</foo>
|
|
|