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

Side by Side Diff: LayoutTests/fast/workers/storage/resources/change-version-sync-2.js

Issue 561093003: Remove worker support of Web SQL Database. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 var EXPECTED_VERSION_AFTER_RELOAD = '3';
2
3 var db = openDatabaseSync("ChangeVersionTest", "", "Test the changeVersion() fun ction.", 1);
4 if (db.version == EXPECTED_VERSION_AFTER_RELOAD)
5 postMessage("PASS: db.version is " + EXPECTED_VERSION_AFTER_RELOAD + " as ex pected.");
6 else
7 postMessage("FAIL: db.version is " + db.version + "; expected " + EXPECTED_V ERSION_AFTER_RELOAD);
8
9 // Reset the version; otherwise this test will fail the next time it's run
10 db.changeVersion(db.version, "1");
11
12 postMessage("done");
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698