test.html 784 B

12345678910111213141516171819202122232425262728
  1. <html>
  2. <head>
  3. <title>Entity Reference Test</title>
  4. <style>
  5. body {
  6. background: #000; color: #eee;
  7. width: 40%;
  8. margin-left: auto;
  9. margin-right: auto;
  10. font-size: 14pt;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <h1>Entity Reference Test</h1>
  16. <div id="test_cdata_in_comment" foo="">
  17. Foozle]!&#32;&copy;&#x20;<!-- <![CDATA[&#32;&reg;&#x20;]]> -->42&;1234&
  18. </div>
  19. <!-- EXPECTED: Foozle]! © 42&;1234& -->
  20. <div id="test_cdata_unwrap_and_passthrough">
  21. Foozle]!&#32;&copy;&#x20;<![CDATA[BOX&#32;&reg;&#x20;/BOX]]>42&;1234&
  22. </div>
  23. <!-- EXPECTED: Foozle]! © BOX ® /BOX42&;1234& -->
  24. <div>
  25. &verbar; &vert; &VerticalLine; &fjlig; &grave; &bsol; &reg; &rhov; &CounterClockwiseContourIntegral; &bsemi;
  26. </div>
  27. </body>
  28. </html>