| Summary: | [GTK] Web Inspector crashes | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Diego Pino <dpino> |
| Component: | JavaScriptCore | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED WORKSFORME | ||
| Severity: | Major | CC: | cgarcia, mrobinson, zan |
| Priority: | P2 | ||
| Version: | 528+ (Nightly build) | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
|
Description
Diego Pino
2014-02-02 14:19:20 PST
> resource:///org/webkitgtk/inspector/UserInterface/ImageUtilities.js:34: CONSOLE WARN: Can't open database due to: Error: SecurityError: DOM Exception 18. Images will be generated instead of loaded from cache
ImageUtilities.js:
try {
var _generatedImageCacheDatabase = openDatabase("com.apple.WebInspector", 1, "Web Inspector Storage Database", 5 * 1024 * 1024);
} catch (e) {
// If we can't open the database it isn't the end of the world, we just will always generate
// the images and not cache them for better load times.
console.warn("Can't open database due to: " + e + ". Images will be generated instead of loaded from cache.");
}
This warning was happening before and everything was working OK. If I comment the openDatabase line, the crash doesn't happen. For the moment that's a workaround.
I cannot reproduce it on latest master (http://trac.webkit.org/changeset/163529). |