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 AppCacheLayoutTest : public InProcessBrowserLayoutTest { | 7 class AppCacheLayoutTest : public InProcessBrowserLayoutTest { |
8 public: | 8 public: |
9 AppCacheLayoutTest() : InProcessBrowserLayoutTest( | 9 AppCacheLayoutTest() : InProcessBrowserLayoutTest( |
10 FilePath().AppendASCII("http").AppendASCII("tests"), | 10 FilePath().AppendASCII("http").AppendASCII("tests"), |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 "non-html.xhtml", | 71 "non-html.xhtml", |
72 "offline-access.html", | 72 "offline-access.html", |
73 "online-whitelist.html", | 73 "online-whitelist.html", |
74 "remove-cache.html", | 74 "remove-cache.html", |
75 "resource-redirect.html", | 75 "resource-redirect.html", |
76 "resource-redirect-2.html", | 76 "resource-redirect-2.html", |
77 "update-cache.html", | 77 "update-cache.html", |
78 }; | 78 }; |
79 | 79 |
80 // This tests loads a data url which calls notifyDone, this just | 80 // This tests loads a data url which calls notifyDone, this just |
81 // doesn't work with the layoutTestController in this test harness. | 81 // doesn't work with the testRunner in this test harness. |
82 // "fail-on-update.html", | 82 // "fail-on-update.html", |
83 | 83 |
84 // Flaky for reasons i don't yet see? | 84 // Flaky for reasons i don't yet see? |
85 // "fail-on-update2.html", | 85 // "fail-on-update2.html", |
86 | 86 |
87 // TODO(michaeln): investigate these more closely | 87 // TODO(michaeln): investigate these more closely |
88 // "crash-when-navigating-away-then-back.html", | 88 // "crash-when-navigating-away-then-back.html", |
89 // "credential-url.html", | 89 // "credential-url.html", |
90 // "different-https-origin-resource-main.html", | 90 // "different-https-origin-resource-main.html", |
91 // "idempotent-update.html", not sure this is a valid test | 91 // "idempotent-update.html", not sure this is a valid test |
92 // "local-content.html", | 92 // "local-content.html", |
93 // "max-size.html", we use a different quota scheme | 93 // "max-size.html", we use a different quota scheme |
94 | 94 |
95 for (size_t i = 0; i < arraysize(kPHPTests); ++i) | 95 for (size_t i = 0; i < arraysize(kPHPTests); ++i) |
96 RunHttpLayoutTest(kPHPTests[i]); | 96 RunHttpLayoutTest(kPHPTests[i]); |
97 } | 97 } |
OLD | NEW |