<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Cannot access the SQLTransaction.constructor.prototype"
   href="https://bugs.webkit.org/show_bug.cgi?id=156613#c2">Comment # 2</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Cannot access the SQLTransaction.constructor.prototype"
   href="https://bugs.webkit.org/show_bug.cgi?id=156613">bug 156613</a>
              from <span class="vcard"><a class="email" href="mailto:d.camata&#64;gmail.com" title="Douglas Camata &lt;d.camata&#64;gmail.com&gt;"> <span class="fn">Douglas Camata</span></a>
</span></b>
        <pre>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):

<span class="quote">&gt; db.transaction(function (tx) { console.log(tx.constructor.prototype) });</span >
&lt; undefined
[Log] {}
<span class="quote">&gt; db.transaction(function (tx) { console.log(tx.constructor) });</span >
&lt; undefined
[Log] function Object() {
    [native code]
}
<span class="quote">&gt; db.transaction(function (tx) { console.log(tx) });</span >
&lt; undefined
[Log] SQLTransaction {executeSql: function}

Positive: there are the SQLTransaction object, its constructor and the constructor's prototype. But the prototype is empty.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>