Is SQLTransaction.executeSql supposed to support multiple statements in one call? I try the following in Chrome:<br><br><pre>openDatabase('test', '1.0', 'test', 1024).transaction(function (t) {<br>   t.executeSql('CREATE TABLE foo (id INTEGER);CREATE TABLE bar (id INTEGER)');<br>
}, reportError);<br><br>function reportError(t, e) {<br>      alert(e.message);<br>}<br></pre>Only the "foo" table is created, and no error is generated.<br>