Bug 141740 - Web Inspector: Object previews differs for objects logged before the Inspector was opened
Summary: Web Inspector: Object previews differs for objects logged before the Inspecto...
Status: RESOLVED WONTFIX
Alias: None
Product: WebKit
Classification: Unclassified
Component: Web Inspector (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Nobody
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2015-02-17 19:35 PST by Nikita Vasilyev
Modified: 2015-03-02 17:10 PST (History)
7 users (show)

See Also:


Attachments
Animated GIF of the problem (136.11 KB, image/gif)
2015-02-17 19:35 PST, Nikita Vasilyev
no flags Details
Reduction (261 bytes, text/html)
2015-02-17 19:37 PST, Nikita Vasilyev
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Nikita Vasilyev 2015-02-17 19:35:25 PST
Created attachment 246789 [details]
Animated GIF of the problem

Expected output:

    {x: 12, y: 53, z: 29}
    <body>...</body>

Actual, logged while the inspector was closed:

    Object
    <body>...</body>

Actual, logged while the inspector was opened:

    {x: 12, y: 53, z: 29}
    ► body
Comment 1 Radar WebKit Bug Importer 2015-02-17 19:35:41 PST
<rdar://problem/19870758>
Comment 2 Nikita Vasilyev 2015-02-17 19:37:19 PST
Created attachment 246790 [details]
Reduction
Comment 3 Joseph Pecoraro 2015-03-02 13:42:11 PST
This is expected. We don't snapshot/preview logged objects unless the inspector is open, to reduce the memory cost of non-debugging browsing.