зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1372427 - prevent using arguments.caller. r=MattN
MozReview-Commit-ID: J6NceWWJzbP --HG-- extra : rebase_source : 7153930a703c1d39e0fce89800aea4ea84a0ccba
This commit is contained in:
Родитель
c2a1a5026a
Коммит
b75e7d653d
|
@ -72,5 +72,6 @@ module.exports = {
|
|||
args: "none",
|
||||
varsIgnorePattern: "^(Cc|Ci|Cr|Cu|EXPORTED_SYMBOLS)$",
|
||||
}],
|
||||
"no-caller": "error",
|
||||
},
|
||||
};
|
||||
|
|
|
@ -1038,12 +1038,12 @@ function addEntry(name, value) {
|
|||
|
||||
// Runs the next test when scroll event occurs
|
||||
function waitForScroll() {
|
||||
addEventListener("scroll", function() {
|
||||
addEventListener("scroll", function listener() {
|
||||
if (!window.pageYOffset) {
|
||||
return;
|
||||
}
|
||||
|
||||
removeEventListener("scroll", arguments.callee, false);
|
||||
removeEventListener("scroll", listener, false);
|
||||
setTimeout(runTest, 100);
|
||||
}, false);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче