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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 }; | 85 }; |
86 | 86 |
87 static const char* kRegressionTests[] = { | 87 static const char* kRegressionTests[] = { |
88 "dont-commit-on-blocked.html", | 88 "dont-commit-on-blocked.html", |
89 NULL | 89 NULL |
90 }; | 90 }; |
91 | 91 |
92 const char* kIntVersionTests[] = { | 92 const char* kIntVersionTests[] = { |
93 "intversion-abort-in-initial-upgradeneeded.html", | 93 "intversion-abort-in-initial-upgradeneeded.html", |
94 "intversion-blocked.html", | 94 "intversion-blocked.html", |
95 // Flaky, http://crbug.com/163694 | 95 "intversion-close-between-events.html", |
96 // "intversion-close-between-events.html", | |
97 "intversion-close-in-oncomplete.html", | 96 "intversion-close-in-oncomplete.html", |
98 "intversion-close-in-upgradeneeded.html", | 97 "intversion-close-in-upgradeneeded.html", |
99 "delete-in-upgradeneeded-close-in-open-success.html", | 98 "delete-in-upgradeneeded-close-in-open-success.html", |
100 "delete-in-upgradeneeded-close-in-versionchange.html", | 99 "delete-in-upgradeneeded-close-in-versionchange.html", |
101 "intversion-gated-on-delete.html", | 100 "intversion-gated-on-delete.html", |
102 "intversion-long-queue.html", | 101 "intversion-long-queue.html", |
103 "intversion-omit-parameter.html", | 102 "intversion-omit-parameter.html", |
104 "intversion-open-with-version.html", | 103 "intversion-open-with-version.html", |
105 "intversion-upgrades.html", | 104 "intversion-upgrades.html", |
106 NULL | 105 NULL |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 | 137 |
139 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, IntVersionTests) { | 138 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, IntVersionTests) { |
140 RunLayoutTests(kIntVersionTests); | 139 RunLayoutTests(kIntVersionTests); |
141 } | 140 } |
142 | 141 |
143 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, RegressionTests) { | 142 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, RegressionTests) { |
144 RunLayoutTests(kRegressionTests); | 143 RunLayoutTests(kRegressionTests); |
145 } | 144 } |
146 | 145 |
147 } // namespace content | 146 } // namespace content |
OLD | NEW |