12345678910111213141516171819202122232425262728 |
- <html>
- <head>
- <title>Entity Reference Test</title>
- <style>
- body {
- background: #000; color: #eee;
- width: 40%;
- margin-left: auto;
- margin-right: auto;
- font-size: 14pt;
- }
- </style>
- </head>
- <body>
- <h1>Entity Reference Test</h1>
- <div id="test_cdata_in_comment" foo="">
- Foozle]! © <!-- <![CDATA[ ® ]]> -->42&;1234&
- </div>
- <!-- EXPECTED: Foozle]! © 42&;1234& -->
- <div id="test_cdata_unwrap_and_passthrough">
- Foozle]! © <![CDATA[BOX ® /BOX]]>42&;1234&
- </div>
- <!-- EXPECTED: Foozle]! © BOX ® /BOX42&;1234& -->
- <div>
- | | | fj ` \ ® ϱ ∳ ⁏
- </div>
- </body>
- </html>
|