Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Unified Diff: tests/html/indexeddb_5_test.dart

Issue 12320101: Fixing Indexed DB supported check. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/html/html.status ('k') | tools/dom/templates/html/impl/impl_IDBFactory.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/indexeddb_5_test.dart
diff --git a/tests/html/indexeddb_5_test.dart b/tests/html/indexeddb_5_test.dart
index 18e3daa877e0044d2cff8640cc70c73bf8b785f4..6b58ed07517e80fadd539c3e88c6ce28f13f95e3 100644
--- a/tests/html/indexeddb_5_test.dart
+++ b/tests/html/indexeddb_5_test.dart
@@ -8,9 +8,6 @@ import 'utils.dart';
main() {
useHtmlIndividualConfiguration();
- if (!idb.IdbFactory.supported) {
- return;
- }
group('supportsDatabaseNames', () {
test('supported', () {
@@ -18,6 +15,10 @@ main() {
});
});
+ if (!idb.IdbFactory.supported) {
+ return;
+ }
+
group('functional', () {
var dbName = 'test_db';
var storeName = 'test_store';
« no previous file with comments | « tests/html/html.status ('k') | tools/dom/templates/html/impl/impl_IDBFactory.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698