зеркало из https://github.com/mozilla/pjs.git
Bug 372964, Make XMLHttpRequest to work more like a normal event target, additional patch, r+sr=jst
This commit is contained in:
Родитель
2e8683e8e7
Коммит
6d3e56583d
|
@ -2560,6 +2560,8 @@ nsXMLHttpRequest::GetInterface(const nsIID & aIID, void **aResult)
|
|||
nsresult
|
||||
nsXMLHttpRequest::GetContextForEventHandlers(nsIScriptContext** aContext)
|
||||
{
|
||||
nsresult rv = CheckInnerWindowCorrectness();
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
NS_IF_ADDREF(*aContext = mScriptContext);
|
||||
return NS_OK;
|
||||
}
|
||||
|
|
|
@ -118,6 +118,7 @@ _TEST_FILES = test_bug5141.html \
|
|||
test_bug371576-5.html \
|
||||
test_bug372086.html \
|
||||
test_bug372964.html \
|
||||
test_bug372964-2.html \
|
||||
test_bug373181.xhtml \
|
||||
test_bug375314.html \
|
||||
test_bug378969.html \
|
||||
|
|
|
@ -0,0 +1,55 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=372964
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 372964</title>
|
||||
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
</head>
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=372964">Mozilla Bug 372964</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none">
|
||||
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script class="testbody" type="text/javascript">
|
||||
|
||||
/** Test for Bug 372964 **/
|
||||
|
||||
var eventCount = 0;
|
||||
|
||||
function listener(evt) {
|
||||
++eventCount;
|
||||
}
|
||||
|
||||
function runTest() {
|
||||
var ifr = document.getElementsByTagName("iframe")[0];
|
||||
var xhr = new ifr.contentWindow.XMLHttpRequest();
|
||||
xhr.addEventListener("foo", listener, false);
|
||||
var event = ifr.contentDocument.createEvent("Events");
|
||||
event.initEvent("foo", true, true);
|
||||
xhr.dispatchEvent(event);
|
||||
is(eventCount, 1, "Should have handled an event");
|
||||
ifr.contentDocument.open();
|
||||
ifr.contentDocument.close();
|
||||
event = ifr.contentDocument.createEvent("Events");
|
||||
event.initEvent("foo", true, true);
|
||||
xhr.dispatchEvent(event);
|
||||
is(eventCount, 1,
|
||||
"Shouldn't have handled an event because the context has changed");
|
||||
SimpleTest.finish();
|
||||
}
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
addLoadEvent(runTest);
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
<iframe>
|
||||
</body>
|
||||
</html>
|
||||
|
Загрузка…
Ссылка в новой задаче