| Index: chrome/browser/apps/web_view_browsertest.cc
|
| diff --git a/chrome/browser/apps/web_view_browsertest.cc b/chrome/browser/apps/web_view_browsertest.cc
|
| index 4f61be54fe0a15ace1c49fda9611fd67e14b7ade..a859a6caf3f7da5a0ab3f2f3c6782647da4fe880 100644
|
| --- a/chrome/browser/apps/web_view_browsertest.cc
|
| +++ b/chrome/browser/apps/web_view_browsertest.cc
|
| @@ -1547,7 +1547,13 @@ IN_PROC_BROWSER_TEST_F(WebViewTest, MAYBE_StoragePersistence) {
|
| // loads an app with multiple webview tags and each tag sets DOM storage
|
| // entries, which the test checks to ensure proper storage isolation is
|
| // enforced.
|
| -IN_PROC_BROWSER_TEST_F(WebViewTest, DOMStorageIsolation) {
|
| +// Times out regularly on Windows. See http://crbug.com/248873.
|
| +#if defined(OS_WIN)
|
| +#define MAYBE_DOMStorageIsolation DISABLED_DOMStorageIsolation
|
| +#else
|
| +#define MAYBE_DOMStorageIsolation DOMStorageIsolation
|
| +#endif
|
| +IN_PROC_BROWSER_TEST_F(WebViewTest, MAYBE_DOMStorageIsolation) {
|
| ASSERT_TRUE(StartEmbeddedTestServer());
|
| GURL regular_url = embedded_test_server()->GetURL("/title1.html");
|
|
|
|
|