| Index: chrome/test/ui/ppapi_uitest.cc
|
| ===================================================================
|
| --- chrome/test/ui/ppapi_uitest.cc (revision 102885)
|
| +++ chrome/test/ui/ppapi_uitest.cc (working copy)
|
| @@ -252,10 +252,23 @@
|
|
|
| // http://crbug.com/96767
|
| #if !defined(OS_MACOSX)
|
| -TEST_F(PPAPITest, FLAKY_Fullscreen) {
|
| +TEST_F(PPAPITest, FLAKY_FlashFullscreen) {
|
| + RunTestViaHTTP("FlashFullscreen");
|
| +}
|
| +TEST_F(OutOfProcessPPAPITest, FLAKY_FlashFullscreen) {
|
| + RunTestViaHTTP("FlashFullscreen");
|
| +}
|
| +// New implementation only honors fullscreen requests within a context of
|
| +// a user gesture. Since we do not yet have an infrastructure for testing
|
| +// those under ppapi_tests, the tests below time out when run automtically.
|
| +// To test the code, run them manually following the directions here:
|
| +// www.chromium.org/developers/design-documents/pepper-plugin-implementation
|
| +// and click on the plugin area (gray square) to force fullscreen mode and
|
| +// get the test unstuck.
|
| +TEST_F(PPAPITest, DISABLED_Fullscreen) {
|
| RunTestViaHTTP("Fullscreen");
|
| }
|
| -TEST_F(OutOfProcessPPAPITest, FLAKY_Fullscreen) {
|
| +TEST_F(OutOfProcessPPAPITest, DISABLED_Fullscreen) {
|
| RunTestViaHTTP("Fullscreen");
|
| }
|
| #endif
|
|
|