[Webkit-unassigned] [Bug 157945] Web Inspector: retained size for typed arrays does not count native backing store

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri May 20 13:35:07 PDT 2016


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

--- Comment #4 from Joseph Pecoraro <joepeck at webkit.org> ---
Ahh, I see the issue when using a Buffer and View separately:

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

Neither the ArrayBuffer or the Float32Array claiming the data!

-- 
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/20160520/21ab095e/attachment.html>


More information about the webkit-unassigned mailing list