Bug 1656293 - Enable ESLint no-unused-vars rules on docshell/test/chrome/*.xhtml files. r=nika

Differential Revision: https://phabricator.services.mozilla.com/D100450
This commit is contained in:
Sonia Singla 2021-03-08 09:20:53 +00:00
Родитель e7bc21634c
Коммит c58860a007
3 изменённых файлов: 1 добавлений и 4 удалений

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

@ -395,7 +395,6 @@ module.exports = {
"no-sequences": "off",
"no-shadow": "off",
"no-undef": "off",
"no-unused-vars": "off",
"no-useless-call": "off",
},
},

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

@ -49,9 +49,8 @@
$("f3").setAttribute("src", doc2);
async function doTheTest() {
var s1 = await snapshotWindow($("f1").contentWindow);
var s2 = await snapshotWindow($("f2").contentWindow);
var s3 = await snapshotWindow($("f3").contentWindow);
// var s3 = await snapshotWindow($("f3").contentWindow);
// This test is broken - see bug 1090274
//ok(!compareSnapshots(s2, s3, true)[0],

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

@ -23,7 +23,6 @@ SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(doTest);
function doTest() {
var shownBrowser = document.getElementById("shownBrowser");
var hiddenBrowser = document.getElementById("hiddenBrowser");
var offScreenBrowser = document.getElementById("offScreenBrowser");
var offScreenSubBrowser = offScreenBrowser.contentDocument.getElementById("topBrowser");