OLD | NEW |
(Empty) | |
| 1 <!doctype html> |
| 2 <html> |
| 3 <head></head> |
| 4 <body> |
| 5 <h1>Test page features</h1> |
| 6 |
| 7 This page has two iframes: one is cross-site, the other is same-site. |
| 8 This helps test save-page when page spans multiple renderer processes. |
| 9 |
| 10 This page has iframes - this exercises a different link-to-local-path |
| 11 replacement code than the one used for non-frames / for savable-resources. |
| 12 |
| 13 This page references /save_page/1.png resource from both |
| 14 1) the main frame and 2) the /save_page/b.htm same-site subframe |
| 15 (same-site means that #1 and #2 refer to 1.png via the same url). |
| 16 This helps test that savable resources are deduplicated across frames. |
| 17 |
| 18 <h1>Test content</h1> |
| 19 |
| 20 <iframe src="/cross-site/bar.com/save_page/a.htm"></iframe> |
| 21 <iframe src="b.htm"></iframe> |
| 22 <img src="1.png"/> |
| 23 </body> |
| 24 </html> |
OLD | NEW |