Index: chrome/test/data/password/password_form_in_crosssite_iframe.html |
diff --git a/chrome/test/data/password/password_form_in_crosssite_iframe.html b/chrome/test/data/password/password_form_in_crosssite_iframe.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..01f095e9fbdb0dd94056629c67400e2d74838cdb |
--- /dev/null |
+++ b/chrome/test/data/password/password_form_in_crosssite_iframe.html |
@@ -0,0 +1,25 @@ |
+<html> |
+<body id="inParent"> |
+ |
+<script> |
+ function receiveMessage(event) { |
+ window.domAutomationController.send(event.data); |
+ } |
+ |
+ function sendMessage(msg) { |
+ document.getElementById("iframe").contentWindow.postMessage(msg,"*"); |
+ } |
+ |
+ function create_iframe(src) { |
+ var ifrm = document.createElement("IFRAME"); |
+ ifrm.setAttribute("id", "iframe"); |
+ ifrm.setAttribute("name", "iframe"); |
+ ifrm.setAttribute("src", src); |
+ document.body.appendChild(ifrm); |
+ } |
+ |
+ window.addEventListener("message", receiveMessage, false); |
+</script> |
+ |
+</body> |
+</html> |