No bug - disable test_open_in_new_window_shortcut Marionette test for e10s to fix bustage on a CLOSED TREE. a=KWierso

Bug to re-enable is bug 1131860.

--HG--
extra : rebase_source : e41e246925353e147bb5eedaad9eca877a33a5c2
extra : amend_source : 1732525425b525c0229946b0ca0e146899c87895
This commit is contained in:
Mike Conley 2015-02-10 19:25:39 -05:00
Родитель 536b231416
Коммит a81fc4b8c8
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -2,7 +2,9 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this # License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
from marionette_test import MarionetteTestCase, skip_if_b2g from marionette_test import (MarionetteTestCase,
skip_if_b2g,
skip_if_e10s)
from keys import Keys from keys import Keys
from marionette import Actions from marionette import Actions
@ -68,6 +70,7 @@ class TestKeyActions(MarionetteTestCase):
self.assertEqual(self.key_reporter_value, "") self.assertEqual(self.key_reporter_value, "")
@skip_if_b2g @skip_if_b2g
@skip_if_e10s
def test_open_in_new_window_shortcut(self): def test_open_in_new_window_shortcut(self):
el = self.marionette.find_element('id', 'updatediv') el = self.marionette.find_element('id', 'updatediv')
start_win = self.marionette.current_chrome_window_handle start_win = self.marionette.current_chrome_window_handle