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

Unified Diff: chrome/test/data/extensions/api_test/automation/tests/webview/webview_frame.html

Issue 2762373002: Fix computation of Automation API location offsets in WebViews. (Closed)
Patch Set: Only run new test on chromeos because of required perms Created 3 years, 9 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
« no previous file with comments | « chrome/test/data/extensions/api_test/automation/tests/webview/manifest.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/automation/tests/webview/webview_frame.html
diff --git a/chrome/test/data/extensions/api_test/automation/tests/webview/webview_frame.html b/chrome/test/data/extensions/api_test/automation/tests/webview/webview_frame.html
new file mode 100644
index 0000000000000000000000000000000000000000..4073aa7f6f9e4e68894c44bd4b73582113aadb5e
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/automation/tests/webview/webview_frame.html
@@ -0,0 +1,23 @@
+<html>
+ <head>
+ <title>Frame with WebView</title>
+ <style>
+ body {
+ margin: 0;
+ padding: 0;
+ }
+ webview {
+ position: absolute;
+ left: 100px;
+ top: 200px;
+ width: 200px;
+ height: 100px;
+ outline: 1px solid #000;
+ }
+ </style>
+ </head>
+ <body>
+ <button>Outer</button>
+ <webview src="data:text/html,<body style='margin: 0; padding: 0;'><button>Inner</button>"></webview>
+ </body>
+</html>
« no previous file with comments | « chrome/test/data/extensions/api_test/automation/tests/webview/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698