зеркало из https://github.com/mozilla/gecko-dev.git
31 строка
656 B
HTML
31 строка
656 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test for DataStore - basic operation on a readonly db</title>
|
|
</head>
|
|
<body>
|
|
<div id="container"></div>
|
|
<script type="application/javascript;version=1.7">
|
|
|
|
var messages = [];
|
|
var worker = new Worker("file_basic_worker.js");
|
|
|
|
worker.onmessage = function(event) {
|
|
messages.push(event.data)
|
|
|
|
if (event.data == 'DONE') {
|
|
// Free the worker when all the tests are done.
|
|
worker.terminate();
|
|
|
|
// Fire message to the test_basic_worker.html.
|
|
for (var i = 0; i < messages.length; i++) {
|
|
alert(messages[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|