| <script src="../../resources/js-test.js"></script> |
| description("Tests that javascript URL execute in the right context when set as action on a form with a target frame."); |
| function didRunJSURLInContext(_contextName) |
| contextName = _contextName; |
| // Since the form has target="testFrame", the javascript URL should execute in the context of the testFrame, not the top frame. |
| shouldBeEqualToString("contextName", "testFrame"); |
| window.name = "topWindow"; |
| document.getElementById("submitButton").click(); |
| <iframe id="testFrame" name="testFrame"></iframe> |
| <form id="testAnchor" target="testFrame" action="javascript:top.didRunJSURLInContext(window.name);"> |
| <input id="submitButton" type="submit" value="Click me"></input> |