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

Side by Side Diff: LayoutTests/fast/workers/storage/resources/empty-statement-sync.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 try {
2 var db = openDatabaseSync("EmptyStatementSync", "1.0", "Test an empty statem ent.", 1);
3 db.transaction(function(tx) {
4 var result = tx.executeSql("");
5 postMessage(result ? "FAIL: result is not null" : "PASS: result is null" );
6 });
7 postMessage("PASS");
8 } catch (err) {
9 postMessage("FAIL");
10 }
11
12 postMessage("done");
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698