[Webkit-unassigned] [Bug 156613] Cannot access the SQLTransaction.constructor.prototype

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Apr 22 13:51:13 PDT 2016


https://bugs.webkit.org/show_bug.cgi?id=156613

--- Comment #2 from Douglas Camata <d.camata at gmail.com> ---
I can confirm that even with Safari Technology Preview I can't access the `SQLTransaction.constructor.prototype` properly, as I do in Chrome, although I get better results than with latest stable version of Safari (which only gave me a lot of undefineds):

> db.transaction(function (tx) { console.log(tx.constructor.prototype) });
< undefined
[Log] {}
> db.transaction(function (tx) { console.log(tx.constructor) });
< undefined
[Log] function Object() {
    [native code]
}
> db.transaction(function (tx) { console.log(tx) });
< undefined
[Log] SQLTransaction {executeSql: function}

Positive: there are the SQLTransaction object, its constructor and the constructor's prototype. But the prototype is empty.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160422/ebf78b3d/attachment.html>


More information about the webkit-unassigned mailing list