Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(629)

Unified Diff: content/test/data/frame_tree/page_with_positioned_nested_frames.html

Issue 1743303002: Make browser hit testing return correct SurfaceId with nested Surfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Attempt to fix broken unit test Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698