OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "apps/native_app_window.h" | 5 #include "apps/native_app_window.h" |
6 #include "base/strings/stringprintf.h" | 6 #include "base/strings/stringprintf.h" |
7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
8 #include "chrome/browser/apps/app_browsertest_util.h" | 8 #include "chrome/browser/apps/app_browsertest_util.h" |
9 #include "chrome/browser/automation/automation_util.h" | 9 #include "chrome/browser/automation/automation_util.h" |
10 #include "chrome/browser/extensions/extension_test_message_listener.h" | 10 #include "chrome/browser/extensions/extension_test_message_listener.h" |
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
603 "DoneShimTest.FAILED", | 603 "DoneShimTest.FAILED", |
604 "web_view/shim"); | 604 "web_view/shim"); |
605 } | 605 } |
606 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestAutosizeRemoveAttributes) { | 606 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestAutosizeRemoveAttributes) { |
607 TestHelper("testAutosizeRemoveAttributes", | 607 TestHelper("testAutosizeRemoveAttributes", |
608 "DoneShimTest.PASSED", | 608 "DoneShimTest.PASSED", |
609 "DoneShimTest.FAILED", | 609 "DoneShimTest.FAILED", |
610 "web_view/shim"); | 610 "web_view/shim"); |
611 } | 611 } |
612 | 612 |
613 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestAutosizeWithPartialAttributes) { | 613 // This test is flaky. crbug.com/282116 |
| 614 IN_PROC_BROWSER_TEST_F(WebViewTest, |
| 615 DISABLED_Shim_TestAutosizeWithPartialAttributes) { |
614 TestHelper("testAutosizeWithPartialAttributes", | 616 TestHelper("testAutosizeWithPartialAttributes", |
615 "DoneShimTest.PASSED", | 617 "DoneShimTest.PASSED", |
616 "DoneShimTest.FAILED", | 618 "DoneShimTest.FAILED", |
617 "web_view/shim"); | 619 "web_view/shim"); |
618 } | 620 } |
619 | 621 |
620 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestAPIMethodExistence) { | 622 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestAPIMethodExistence) { |
621 TestHelper("testAPIMethodExistence", | 623 TestHelper("testAPIMethodExistence", |
622 "DoneShimTest.PASSED", | 624 "DoneShimTest.PASSED", |
623 "DoneShimTest.FAILED", | 625 "DoneShimTest.FAILED", |
(...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1676 "DoneDialogTest.FAILED", | 1678 "DoneDialogTest.FAILED", |
1677 "web_view/dialog"); | 1679 "web_view/dialog"); |
1678 } | 1680 } |
1679 | 1681 |
1680 IN_PROC_BROWSER_TEST_F(WebViewTest, Dialog_TestPromptDialog) { | 1682 IN_PROC_BROWSER_TEST_F(WebViewTest, Dialog_TestPromptDialog) { |
1681 TestHelper("testPromptDialog", | 1683 TestHelper("testPromptDialog", |
1682 "DoneDialogTest.PASSED", | 1684 "DoneDialogTest.PASSED", |
1683 "DoneDialogTest.FAILED", | 1685 "DoneDialogTest.FAILED", |
1684 "web_view/dialog"); | 1686 "web_view/dialog"); |
1685 } | 1687 } |
OLD | NEW |