OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/test/layout_browsertest.h" | 5 #include "content/test/layout_browsertest.h" |
6 | 6 |
7 class IndexedDBLayoutTest : public InProcessBrowserLayoutTest { | 7 class IndexedDBLayoutTest : public InProcessBrowserLayoutTest { |
8 public: | 8 public: |
9 IndexedDBLayoutTest() : InProcessBrowserLayoutTest( | 9 IndexedDBLayoutTest() : InProcessBrowserLayoutTest( |
10 FilePath(), FilePath().AppendASCII("storage").AppendASCII("indexeddb")) { | 10 FilePath(), FilePath().AppendASCII("storage").AppendASCII("indexeddb")) { |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 | 108 |
109 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, KeyTests) { | 109 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, KeyTests) { |
110 RunLayoutTests(kKeyTests); | 110 RunLayoutTests(kKeyTests); |
111 } | 111 } |
112 | 112 |
113 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, TransactionTests) { | 113 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, TransactionTests) { |
114 RunLayoutTests(kTransactionTests); | 114 RunLayoutTests(kTransactionTests); |
115 } | 115 } |
116 | 116 |
117 // Frequent flaky timeouts. http://crbug.com/123685 | 117 // Frequent flaky timeouts. http://crbug.com/123685 |
118 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, DISABLED_RegressionTests) { | 118 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, RegressionTests) { |
119 RunLayoutTests(kRegressionTests); | 119 RunLayoutTests(kRegressionTests); |
120 } | 120 } |
OLD | NEW |