Bug 1637776 - Fix trailing whitespace in test r=rmaries

Differential Revision: https://phabricator.services.mozilla.com/D83252
This commit is contained in:
Botond Ballo 2020-07-11 22:15:27 +00:00
Родитель 007176902e
Коммит de42c3f586
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -39,9 +39,9 @@ function* test(testDriver) {
let target = subframe.contentWindow.document.getElementById("target");
// To get an event that's dispatched in the iframe's document,
// synthesize a native tap. This will synthesize three events:
// a mouse-move, a mouse-down, and a mouse-up. The mouse-move
// a mouse-move, a mouse-down, and a mouse-up. The mouse-move
// and mouse-down are dispatched in the root content document.
// The mouse-down causes the iframe to "capture" the mouse, which
// The mouse-down causes the iframe to "capture" the mouse, which
// leads the mouse-up to be dispatched in the iframe's document
// instead. We listen for the mouse-up.
target.addEventListener("mouseup", testDriver);