forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1430818 - Crash in URIUtils::ResetWithSource. r=bz.
We want to create the source fragment before trying to use it in URIUtils::ResetWithSource. The testcase triggers an assertion related to unbalanced onload blocking/unblocking, fixing that by blocking onload on the new document we're setting in OnTransformDone and unblocking onload on the old document. --HG-- extra : rebase_source : 8bbdb9ce6a38dc6b76d13dfb2c3c7d67f78ecefe
- Loading branch information
1 parent
9c8b6a8
commit 20e677d
Showing
5 changed files
with
72 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
function getFileStream(filename) | ||
{ | ||
let self = Components.classes["@mozilla.org/file/local;1"] | ||
.createInstance(Components.interfaces.nsIFile); | ||
self.initWithPath(getState("__LOCATION__")); | ||
let file = self.parent; | ||
file.append(filename); | ||
let stream = Components.classes['@mozilla.org/network/file-input-stream;1'] | ||
.createInstance(Components.interfaces.nsIFileInputStream); | ||
stream.init(file, -1, -1, false); | ||
return stream; | ||
} | ||
|
||
function handleRequest(request, response) | ||
{ | ||
response.processAsync(); | ||
response.setStatusLine(null, 200, "OK"); | ||
response.setHeader("Content-Type", "text/xml", false); | ||
|
||
switch (request.queryString) { | ||
case "stylesheet": | ||
{ | ||
let timer = Components.classes["@mozilla.org/timer;1"] | ||
.createInstance(Components.interfaces.nsITimer); | ||
timer.initWithCallback(() => { | ||
setState("xslt", "loaded"); | ||
response.finish(); | ||
timer.cancel(); | ||
}, 1000 /* milliseconds */, Components.interfaces.nsITimer.TYPE_REPEATING_SLACK); | ||
break; | ||
} | ||
default: | ||
{ | ||
let stream = getFileStream("1430818.xml"); | ||
response.bodyOutputStream.writeFrom(stream, | ||
stream.available()); | ||
stream.close(); | ||
let timer = Components.classes["@mozilla.org/timer;1"] | ||
.createInstance(Components.interfaces.nsITimer); | ||
timer.initWithCallback(() => { | ||
if (getState("xslt") == "loaded") { | ||
response.finish(); | ||
timer.cancel(); | ||
} | ||
}, 100 /* milliseconds */, Components.interfaces.nsITimer.TYPE_REPEATING_SLACK); | ||
break; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0"?> | ||
<?xml-stylesheet type="text/xsl" href="?stylesheet"?> | ||
<root> | ||
</root> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,3 +25,4 @@ load 1336830.html | |
load 1336832.html | ||
load 1338277.html | ||
load 1361892.html | ||
HTTP load 1430818.sjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters