Bug 1784847 - Disable the breakpoint tests of composition events until bug 1466596 or bug 1690827 is fixed r=bomsy

I think that fixing the crash bug requires a big design change to manage
delayed composition commit requests from a remote process and I don't have
much time to work on it but the intermittent failure frequency has spiked up.
Therefore, we need temporarily to comment out the block for now.

Differential Revision: https://phabricator.services.mozilla.com/D164532
This commit is contained in:
Masayuki Nakano 2022-12-14 04:47:48 +00:00
Родитель 4df748b3ba
Коммит 7ac1460c9f
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -77,6 +77,8 @@ add_task(async function() {
await toggleEventBreakpoint(dbg, "Control", "event.control.focusin");
await toggleEventBreakpoint(dbg, "Control", "event.control.focusout");
// TODO: Enable this block when you fix bug 1466596 or bug 1690827
/*
await toggleEventBreakpoint(
dbg,
"Keyboard",
@ -133,6 +135,7 @@ add_task(async function() {
await waitForPaused(dbg);
assertPausedAtSourceAndLine(dbg, eventBreakpointsSource.id, 63);
await resume(dbg);
*/
info(`Check that breakpoint can be set on "scrollend"`);
await toggleEventBreakpoint(dbg, "Control", "event.control.scrollend");
@ -274,6 +277,8 @@ async function invokeOnElement(selector, action) {
);
}
// TODO: Enable this function when you fix bug 1466596 or bug 1690827
/*
function invokeComposition() {
const string = "ex";
EventUtils.synthesizeCompositionChange({
@ -290,3 +295,4 @@ function invokeComposition() {
key: { key: string[string.length - 1] },
});
}
*/