Warning, /frameworks/syndication/autotests/atom/atom10_entry_content.xml is written in an unsupported language. File is not indexed.

0001 <!-- Copyright: Mark Pilgrim (feed parser test suite). See LICENSE.UNITTESTS for details. -->
0002 <feed xmlns="http://www.w3.org/2005/Atom">
0003 <entry>
0004     <title>This entry contains plain text with no type set</title>
0005     <content>Me &amp; You, &lt; and &gt; History of the &lt;blink&gt; tag.</content>
0006 </entry>
0007 <entry>
0008     <title>This entry contains plain text with type=text</title>
0009     <content type="text">Me &amp; You. History of the &lt;blink&gt; tag.</content>
0010 </entry>
0011 <entry>
0012     <title>This entry contains plain text with type=text/plain</title>
0013     <content type="text/plain">Me &amp; You. History of the &lt;blink&gt; tag.</content>
0014 </entry>
0015 <entry>
0016     <title>This entry contains escaped HTML with type=text/html</title>
0017     <content type="text/html">Me &amp;amp; You. History of the &amp;lt;blink&amp;gt; tag.
0018         And a &lt;a href=&quot;http://akregator.sf.net/&quot;>link&lt;/a></content>
0019 </entry>
0020 <entry>
0021     <title>This entry contains escaped HTML with type=html</title>
0022     <content type="html">Me &amp;amp; You. History of the &amp;lt;blink&amp;gt; tag.
0023         And a &lt;a href=&quot;http://akregator.sf.net/&quot;>link&lt;/a></content>
0024 </entry>
0025 <entry>
0026     <title>This entry links to remote content via src attribute</title>
0027     <content src="http://example.com/movie.mp4"/>
0028 </entry>
0029 <entry>
0030     <title>This entry contains embedded XHTML with type=xhtml</title>
0031     <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">A &amp; B. History of the &lt;blink&gt; tag.</div>
0032     <div xmlns="http://www.w3.org/1999/xhtml">Example <b>Atom</b></div>
0033     </content>
0034 </entry>
0035 
0036 <entry>
0037     <title>This entry contains base64-encoded binary content (&quot;Example &lt;b>Atom&lt;/b>&quot;)</title>
0038 <content type="application/octet-stream">
0039     RXhhbXBsZSA8Yj5BdG9tPC9iPg==
0040 </content>
0041 </entry>
0042 <entry>
0043     <title>This entry contains embedded XHTML, but the mimetype is application/x-pdf, so 
0044            the parser should try to interpret it as binary content (And fail gracefully, without
0045            crashing)</title>
0046     <content type="application/x-pdf"><div xmlns="http://www.w3.org/1999/xhtml">A &amp; B. History of the &lt;blink&gt; tag.</div>
0047         <div xmlns="http://www.w3.org/1999/xhtml">Example <b>Atom</b></div>
0048     </content>
0049 </entry>
0050 
0051 </feed>