зеркало из https://github.com/mozilla/gecko-dev.git
Second debugging patch for bug 968200
This commit is contained in:
Родитель
bdb30b262d
Коммит
d3d77c960e
|
@ -52,8 +52,13 @@ function load() {
|
|||
var iframe = document.getElementById("test");
|
||||
var gCallback = null;
|
||||
function run_test(test, cb) {
|
||||
iframe.src = "unsafeBidiFileName.sjs?name=" + encodeURIComponent(test.param);
|
||||
var url = "unsafeBidiFileName.sjs?name=" + encodeURIComponent(test.param);
|
||||
info("Loading test " + gCounter + " (" + test.param + ") from " + url);
|
||||
iframe.onload = function() {
|
||||
ok(false, "Received an unexpected load event from the iframe");
|
||||
};
|
||||
gCallback = cb;
|
||||
iframe.src = url;
|
||||
}
|
||||
|
||||
var gCounter = -1;
|
||||
|
|
Загрузка…
Ссылка в новой задаче