OLD | NEW |
1 <!-- This page is used to test that PageSerializer correctly serializes the | 1 <!-- This page is used to test that FrameSerializer correctly serializes the |
2 expected resources from various HTML nodes. | 2 expected resources from various HTML nodes. |
3 --> | 3 --> |
4 <html> | 4 <html> |
5 <head> | 5 <head> |
6 <!-- Style sheet links should be retrieved --> | 6 <!-- Style sheet links should be retrieved --> |
7 <link rel="stylesheet" type="text/css" href="style.css"/> | 7 <link rel="stylesheet" type="text/css" href="style.css"/> |
8 <!-- Other link should NOT be retrieved --> | 8 <!-- Other link should NOT be retrieved --> |
9 <link rel="copyright" type="text/plain" href="copyright.html"/> | 9 <link rel="copyright" type="text/plain" href="copyright.html"/> |
10 <!-- Scripts should NOT be retrieved --> | 10 <!-- Scripts should NOT be retrieved --> |
11 <script src="script.js"></script> | 11 <script src="script.js"></script> |
(...skipping 24 matching lines...) Expand all Loading... |
36 | 36 |
37 <!-- Some more obscure tags, should NOT be serialized --> | 37 <!-- Some more obscure tags, should NOT be serialized --> |
38 <blockquote cite="blockquoteCite.html"></blockquote> | 38 <blockquote cite="blockquoteCite.html"></blockquote> |
39 <q cite="qCite.html"></q> | 39 <q cite="qCite.html"></q> |
40 <p>My favorite color is <del cite="delCite.html">blue</del> <ins>red</ins>!</p> | 40 <p>My favorite color is <del cite="delCite.html">blue</del> <ins>red</ins>!</p> |
41 <p>My favorite color is <del>blue</del> <ins cite="insCite.html">red</ins>!</p> | 41 <p>My favorite color is <del>blue</del> <ins cite="insCite.html">red</ins>!</p> |
42 | 42 |
43 </body> | 43 </body> |
44 | 44 |
45 </html> | 45 </html> |
OLD | NEW |