Bug 990916 - Disable synth mousemove events during pointer event testing, since the test doesn't expect them and fails. r=smaug

This commit is contained in:
Kartikaya Gupta 2016-02-03 19:13:34 -05:00
parent 7afee0e4a7
commit 0933773da2

View File

@ -15,7 +15,8 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=976963
SimpleTest.requestFlakyTimeout("untriaged");
SpecialPowers.pushPrefEnv({
"set": [
["dom.w3c_pointer_events.enabled", true]
["dom.w3c_pointer_events.enabled", true],
["layout.reflow.synthMouseMove", false]
]
}, startTest);
}