<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Web Inspector: retained size for typed arrays does not count native backing store"
   href="https://bugs.webkit.org/show_bug.cgi?id=157945#c4">Comment # 4</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Web Inspector: retained size for typed arrays does not count native backing store"
   href="https://bugs.webkit.org/show_bug.cgi?id=157945">bug 157945</a>
              from <span class="vcard"><a class="email" href="mailto:joepeck&#64;webkit.org" title="Joseph Pecoraro &lt;joepeck&#64;webkit.org&gt;"> <span class="fn">Joseph Pecoraro</span></a>
</span></b>
        <pre>Ahh, I see the issue when using a Buffer and View separately:

    window.lists = [];
    console.takeHeapSnapshot(&quot;before&quot;);
    var buffer = new ArrayBuffer(4*5000);
    var view = new Float32Array(buffer);
    window.lists.push(view);
    console.takeHeapSnapshot(&quot;after&quot;);    

Neither the ArrayBuffer or the Float32Array claiming the data!</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>