| OLD | NEW |
| 1 <!-- This page is used to test that the PageSerializer correctly retrieves | 1 <!-- This page is used to test that the FrameSerializer correctly retrieves |
| 2 the expected resources when dealing with iframes. | 2 the expected resources when dealing with iframes. |
| 3 --> | 3 --> |
| 4 <html> | 4 <html> |
| 5 <body> | 5 <body> |
| 6 | 6 |
| 7 <!-- Images in a frame should be serialized --> | 7 <!-- Images in a frame should be serialized --> |
| 8 <iframe src="top.png"></iframe> | 8 <iframe src="top.png"></iframe> |
| 9 | 9 |
| 10 <!-- Resources used by an iframe tag, serialize once --> | 10 <!-- Resources used by an iframe tag, serialize once --> |
| 11 <iframe src="simple_iframe.html"></iframe> | 11 <iframe src="simple_iframe.html"></iframe> |
| 12 <iframe src="simple_iframe.html"></iframe> | 12 <iframe src="simple_iframe.html"></iframe> |
| 13 | 13 |
| 14 <!-- Object tags can be used to create iframes --> | 14 <!-- Object tags can be used to create iframes --> |
| 15 <object data="object_iframe.html"></object> | 15 <object data="object_iframe.html"></object> |
| 16 | 16 |
| 17 <!-- Embed tags can be used to create iframes as well --> | 17 <!-- Embed tags can be used to create iframes as well --> |
| 18 <embed src="embed_iframe.html"></object> | 18 <embed src="embed_iframe.html"></object> |
| 19 | 19 |
| 20 <!-- Encodings are respected and normalization is not performed --> | 20 <!-- Encodings are respected and normalization is not performed --> |
| 21 <iframe src="encoded_iframe.html"></iframe> | 21 <iframe src="encoded_iframe.html"></iframe> |
| 22 | 22 |
| 23 </body> | 23 </body> |
| 24 </html> | 24 </html> |
| OLD | NEW |