Chromium Code Reviews| Index: content/test/data/frame_tree/page_with_positioned_nested_frames.html |
| diff --git a/content/test/data/frame_tree/page_with_positioned_nested_frames.html b/content/test/data/frame_tree/page_with_positioned_nested_frames.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ffb8cf5a42cdf9a02beca11cb8dd96784a40625b |
| --- /dev/null |
| +++ b/content/test/data/frame_tree/page_with_positioned_nested_frames.html |
| @@ -0,0 +1,16 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +iframe { |
| + position:absolute; |
| + top: 50px; |
| + left: 50px; |
| + width: 200px; |
| + height: 200px; |
| +} |
| +</style> |
| +<html> |
| +<body> |
| +<iframe src="/cross-site/a.com/frame_tree/page_with_positioned_frame.html"></iframe> |
| +This page contains a nested and positioned cross-origin frames. |
| +</body> |
| +</html> |