Bug 79691

Summary: Web Inspector: [InspectorIndexedDB] Show meaningful description for object store items values.
Product: WebKit Reporter: Vsevolod Vlasov <vsevik>
Component: Web Inspector (Deprecated)Assignee: Vsevolod Vlasov <vsevik>
Status: RESOLVED FIXED    
Severity: Normal CC: apavlov, bweinstein, joepeck, keishi, loislo, pfeldman, pmuellr, rik, timothy, yurys
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Bug Depends on:    
Bug Blocks: 75386    
Attachments:
Description Flags
Patch
none
Patch pfeldman: review+

Description Vsevolod Vlasov 2012-02-27 12:02:17 PST
Show meaningful description for object store items values.
Comment 1 Vsevolod Vlasov 2012-02-27 12:03:41 PST
Created attachment 129081 [details]
Patch
Comment 2 Pavel Feldman 2012-02-28 09:51:28 PST
Comment on attachment 129081 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=129081&action=review

> Source/WebCore/inspector/front-end/IndexedDBViews.js:349
> +            span.appendChild(document.createTextNode("\"" + value.description + "\""));

Appending blob will kill the renderer.

> Source/WebCore/inspector/front-end/IndexedDBViews.js:352
> +        default:

What about the number, null, undefined?
Comment 3 Vsevolod Vlasov 2012-03-01 12:41:53 PST
Created attachment 129733 [details]
Patch
Comment 4 Vsevolod Vlasov 2012-03-02 02:00:19 PST
Committed r109536: <http://trac.webkit.org/changeset/109536>