| 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 namespace content { | 7 namespace content { |
| 8 | 8 |
| 9 class IndexedDBLayoutTest : public InProcessBrowserLayoutTest { | 9 class IndexedDBLayoutTest : public InProcessBrowserLayoutTest { |
| 10 public: | 10 public: |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 } | 140 } |
| 141 | 141 |
| 142 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, IntVersionTests2) { | 142 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, IntVersionTests2) { |
| 143 RunLayoutTests(kIntVersionTests2); | 143 RunLayoutTests(kIntVersionTests2); |
| 144 } | 144 } |
| 145 | 145 |
| 146 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, RegressionTests) { | 146 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, RegressionTests) { |
| 147 RunLayoutTests(kRegressionTests); | 147 RunLayoutTests(kRegressionTests); |
| 148 } | 148 } |
| 149 | 149 |
| 150 // TODO(jsbell): Remove this when data has been gathered. |
| 151 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, FLAKY_FlakyTests) { |
| 152 RunLayoutTest("key-type-array.html"); |
| 153 } |
| 154 |
| 150 } // namespace content | 155 } // namespace content |
| OLD | NEW |