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 "base/file_path.h" | 5 #include "base/file_path.h" |
6 #include "content/test/layout_browsertest.h" | 6 #include "content/test/layout_browsertest.h" |
7 | 7 |
8 class IndexedDBLayoutTest : public InProcessBrowserLayoutTest { | 8 class IndexedDBLayoutTest : public InProcessBrowserLayoutTest { |
9 public: | 9 public: |
10 IndexedDBLayoutTest() : InProcessBrowserLayoutTest( | 10 IndexedDBLayoutTest() : InProcessBrowserLayoutTest( |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 NULL | 88 NULL |
89 }; | 89 }; |
90 | 90 |
91 static const char* kRegressionTests[] = { | 91 static const char* kRegressionTests[] = { |
92 "dont-commit-on-blocked.html", | 92 "dont-commit-on-blocked.html", |
93 NULL | 93 NULL |
94 }; | 94 }; |
95 | 95 |
96 } | 96 } |
97 | 97 |
98 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, FAILS_BasicTests) { | 98 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, BasicTests) { |
99 RunLayoutTests(kBasicTests); | 99 RunLayoutTests(kBasicTests); |
100 } | 100 } |
101 | 101 |
102 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, ComplexTests) { | 102 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, ComplexTests) { |
103 RunLayoutTests(kComplexTests); | 103 RunLayoutTests(kComplexTests); |
104 } | 104 } |
105 | 105 |
106 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, IndexTests) { | 106 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, IndexTests) { |
107 RunLayoutTests(kIndexTests); | 107 RunLayoutTests(kIndexTests); |
108 } | 108 } |
109 | 109 |
110 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, KeyTests) { | 110 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, KeyTests) { |
111 RunLayoutTests(kKeyTests); | 111 RunLayoutTests(kKeyTests); |
112 } | 112 } |
113 | 113 |
114 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, TransactionTests) { | 114 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, TransactionTests) { |
115 RunLayoutTests(kTransactionTests); | 115 RunLayoutTests(kTransactionTests); |
116 } | 116 } |
117 | 117 |
118 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, RegressionTests) { | 118 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, RegressionTests) { |
119 RunLayoutTests(kRegressionTests); | 119 RunLayoutTests(kRegressionTests); |
120 } | 120 } |
OLD | NEW |