Use setTimeout instead of setImmediate in fixtures.

The setImmediate is implemented in node and may have unexpected affects.
This commit is contained in:
Cheng Zhao 2013-09-02 16:46:08 +08:00
Родитель 610ac5b045
Коммит f17864372e
4 изменённых файлов: 8 добавлений и 8 удалений

4
spec/fixtures/api/beforeunload-false.html поставляемый
Просмотреть файл

@ -2,9 +2,9 @@
<body>
<script type="text/javascript" charset="utf-8">
window.onbeforeunload = function() {
setImmediate(function() {
setTimeout(function() {
require('remote').getCurrentWindow().emit('onbeforeunload');
});
}, 0);
return false;
}
</script>

Просмотреть файл

@ -2,9 +2,9 @@
<body>
<script type="text/javascript" charset="utf-8">
window.onbeforeunload = function() {
setImmediate(function() {
setTimeout(function() {
require('remote').getCurrentWindow().emit('onbeforeunload');
});
}, 0);
return false;
}
window.close();

Просмотреть файл

@ -2,9 +2,9 @@
<body>
<script type="text/javascript" charset="utf-8">
window.onbeforeunload = function() {
setImmediate(function() {
setTimeout(function() {
require('remote').getCurrentWindow().emit('onbeforeunload');
});
}, 0);
return 'string';
}
window.close();

Просмотреть файл

@ -2,9 +2,9 @@
<body>
<script type="text/javascript" charset="utf-8">
window.onbeforeunload = function() {
setImmediate(function() {
setTimeout(function() {
require('remote').getCurrentWindow().emit('onbeforeunload');
});
}, 0);
return true;
}
window.close();