Bug 1519053 - Set window handle for 'Switch To Window' also as 'handle'. r=whimboo

Differential Revision: https://phabricator.services.mozilla.com/D23169

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Kriti Singh 2019-03-12 21:42:31 +00:00
Родитель 4274ada82b
Коммит ed94af964a
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -1476,6 +1476,10 @@ impl ToMarionette for SwitchToWindowParameters {
"name".to_string(),
serde_json::to_value(self.handle.clone())?,
);
data.insert(
"handle".to_string(),
serde_json::to_value(self.handle.clone())?,
);
Ok(data)
}
}