| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # | 5 # |
| 6 # This test uses ppapi_test_lib. | 6 # This test uses ppapi_test_lib. |
| 7 | 7 |
| 8 Import('env') | 8 Import('env') |
| 9 | 9 |
| 10 env.Prepend(CPPDEFINES=['XP_UNIX']) | 10 env.Prepend(CPPDEFINES=['XP_UNIX']) |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 node = env.PPAPIBrowserTester('ppapi_ppb_fullscreen_browser_test.out', | 32 node = env.PPAPIBrowserTester('ppapi_ppb_fullscreen_browser_test.out', |
| 33 nmfs=['${TEST_DIR}/ppapi_ppb_fullscreen.nmf'], | 33 nmfs=['${TEST_DIR}/ppapi_ppb_fullscreen.nmf'], |
| 34 url='ppapi_ppb_fullscreen.html', | 34 url='ppapi_ppb_fullscreen.html', |
| 35 files=env.ExtractPublishedFiles(nexe), | 35 files=env.ExtractPublishedFiles(nexe), |
| 36 browser_flags=['--enable-pepper-testing']) | 36 browser_flags=['--enable-pepper-testing']) |
| 37 | 37 |
| 38 # Fatal Error on Mac: | 38 # Fatal Error on Mac: |
| 39 # ERROR:render_widget_host_view_mac.mm(344)] Not implemented reached in virtual | 39 # ERROR:render_widget_host_view_mac.mm(344)] Not implemented reached in virtual |
| 40 # void RenderWidgetHost ViewMac::InitAsFullscreen(RenderWidgetHostView *)Full | 40 # void RenderWidgetHost ViewMac::InitAsFullscreen(RenderWidgetHostView *)Full |
| 41 # screen not implemented on Mac | 41 # screen not implemented on Mac |
| 42 env.AddNodeToTestSuite(node, | 42 env.AddNodeToTestSuite( |
| 43 ['chrome_browser_tests'], | 43 node, |
| 44 'run_ppapi_ppb_fullscreen_browser_test', | 44 ['chrome_browser_tests'], |
| 45 is_broken=(env.PPAPIBrowserTesterIsBroken() or | 45 'run_ppapi_ppb_fullscreen_browser_test', |
| 46 env.Bit('host_mac'))) | 46 # New PPB_Fullscreen_Dev implementation only allows transitions to |
| 47 # fullscreen after a user gesture. Until PPB_Testing has the capabilities |
| 48 # to trigger those, we cannot test this automatically. |
| 49 # TODO(polina): update the test to work manually with the new |
| 50 # implementation while we are sorting out the above issue. |
| 51 #is_broken=(env.PPAPIBrowserTesterIsBroken() or env.Bit('host_mac'))) |
| 52 is_broken=True) |
| OLD | NEW |