no-bug: Update to Firefox 150.0 (gh-13281)

This commit is contained in:
mr. m
2026-04-17 00:59:38 +02:00
committed by GitHub
parent 8249814f68
commit 1964922df7
137 changed files with 4040 additions and 3385 deletions

View File

@@ -66,8 +66,4 @@ add_task(async function test_Basic_Unsplit_Group_Removed() {
group = tabs[0].group;
});
ok(group, "The split group should exist");
ok(
!group.parentNode,
"The split group should be removed from the DOM after unsplitting"
);
});

View File

@@ -58,17 +58,17 @@ add_task(async function test_3_Splits_Grid_Inset() {
ok(viewsToCheck.length, "There should be split views present");
Assert.equal(
viewsToCheck[0].style.inset,
"0% 0% 50% 50%",
"0% 50% 50% 0%",
"The first split view should have correct inset style"
);
Assert.equal(
viewsToCheck[1].style.inset,
"50% 0% 0% 50%",
"50% 50% 0% 0%",
"The second split view should have correct inset style"
);
Assert.equal(
viewsToCheck[2].style.inset,
"0% 50% 0% 0%",
"0% 0% 0% 50%",
"The third split view should have correct inset style"
);
},