mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
60606f81f5
--HG-- extra : rebase_source : 818071f95ee10917811e16dc42d4073d23035146
85 lines
2.6 KiB
XML
85 lines
2.6 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
|
|
<?xml-stylesheet type="text/css" href="/tests/SimpleTest/test.css"?>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=664783
|
|
-->
|
|
<window title="Mozilla Bug 664783"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
|
|
<script type="application/javascript" src="dom_worker_helper.js"/>
|
|
|
|
<!-- test results are displayed in the html:body -->
|
|
<body xmlns="http://www.w3.org/1999/xhtml">
|
|
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=664783"
|
|
target="_blank">Mozilla Bug 664783</a>
|
|
|
|
<div id="content" style="display: none">
|
|
<input id="fileList" type="file"></input>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
<!-- test code goes here -->
|
|
<script type="application/javascript">
|
|
<![CDATA[
|
|
|
|
/** Test for Bug 664783 **/
|
|
|
|
var fileNum = 0;
|
|
|
|
/**
|
|
* Create a file which contains the given data.
|
|
*/
|
|
function createFileWithData(fileData) {
|
|
var testFile = Components.classes["@mozilla.org/file/directory_service;1"]
|
|
.getService(Components.interfaces.nsIProperties)
|
|
.get("ProfD", Components.interfaces.nsIFile);
|
|
testFile.append("workerFileReaderSyncErrors" + fileNum++);
|
|
|
|
var outStream = Components.classes["@mozilla.org/network/file-output-stream;1"]
|
|
.createInstance(Components.interfaces.nsIFileOutputStream);
|
|
outStream.init(testFile, 0x02 | 0x08 | 0x20, // write, create, truncate
|
|
0666, 0);
|
|
outStream.write(fileData, fileData.length);
|
|
outStream.close();
|
|
|
|
var fileList = document.getElementById('fileList');
|
|
fileList.value = testFile.path;
|
|
|
|
return fileList.files[0];
|
|
}
|
|
|
|
/**
|
|
* Creates a worker which runs errors cases.
|
|
*/
|
|
function runWorkerErrors(file) {
|
|
var worker = new Worker("fileReaderSyncErrors_worker.js");
|
|
|
|
worker.onerror = function(event) {
|
|
ok(false, "Worker had an error: " + event.data);
|
|
finish();
|
|
};
|
|
|
|
worker.onmessage = function(event) {
|
|
if(event.data == undefined) {
|
|
// Worker returns undefined when tests have finished running.
|
|
finish();
|
|
} else {
|
|
// Otherwise worker will return results of tests to be evaluated.
|
|
is(event.data.actual, event.data.expected, event.data.message);
|
|
}
|
|
};
|
|
|
|
worker.postMessage(file);
|
|
waitForWorkerFinish();
|
|
}
|
|
|
|
// Run worker which creates exceptions.
|
|
runWorkerErrors(createFileWithData("text"));
|
|
|
|
]]>
|
|
</script>
|
|
</window>
|