(In reply to Ed Morley [:emorley] from comment #57) > Test disabled until someone looks into the failures: This special case is still in the test: https://searchfox.org/mozilla-central/rev/3563da061ca2b32f7f77f5f68088dbf9b5332a9f/layout/generic/test/test_movement_by_characters.html#19-21 ```html if (navigator.userAgent.includes("Windows NT 6.2")) { todo(false, "Too many intermittent failures on Windows 8 (bug 886781)"); SimpleTest.finish(); ``` This check will fail on Windows 10 and 11, which implies that this test is running just fine on those versions, which is good news. I don't think we run mochitests on Windows 8 these days, so we can probably remove that special case to clean up the test.
Bug 886781 Comment 109 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
(In reply to Ed Morley [:emorley] from comment #57) > Test disabled until someone looks into the failures: This special case is still in the test: https://searchfox.org/mozilla-central/rev/3563da061ca2b32f7f77f5f68088dbf9b5332a9f/layout/generic/test/test_movement_by_characters.html#19-21 ```html if (navigator.userAgent.includes("Windows NT 6.2")) { todo(false, "Too many intermittent failures on Windows 8 (bug 886781)"); SimpleTest.finish(); ``` This check will fail on Windows 10 and 11, which implies that this test is running just fine on those versions, which is good news. I don't think we run mochitests on Windows 8 in automation these days[1] so we can probably remove that special case to clean up the test. [1] (though we still support Win8 in general, per bug 1594270 comment 38)