blob: e259354dcbbd5947953a2974bc30b5afeb439f0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?xml version="1.0" encoding="utf-8"?>
<!--
Description: item desc encoded, double-escaped entity
Expect: var summary = feed.items.queryElementAt(0, Components.interfaces.nsIFeedEntry).summary; summary.plainText() == "test D\u00e9sol\u00e9e";
-->
<rss version="2.0" >
<channel>
<item>
<comments>http://example.org</comments>
<author>jbb@dallas.example.com (Joe Bob Briggs)</author>
<title>test</title>
<category domain="foo">bar</category>
<description>
<b>test D&eacute;sol&eacute;e</b>
</description>
</item>
</channel>
</rss>
|