Source/WebCore/ChangeLog

 12013-03-11 Alec Flett <alecflett@chromium.org>
 2
 3 Inspector: [Chromium] http/tests/inspector/indexeddb/database-data.html ASSERT on Win7 following r133855
 4 https://bugs.webkit.org/show_bug.cgi?id=101618
 5
 6 Deactivate transactions created by the inspector, before
 7 they are reactivated by IndexedDB. This puts transactions
 8 in an identical state as when they are created by scripts.
 9
 10 Reviewed by NOBODY (OOPS!).
 11
 12 Test: http/tests/inspector/indexeddb/database-data.html
 13
 14 * inspector/InspectorIndexedDBAgent.cpp: Make transactions inactive upon leaving the inspector code.
 15 (WebCore):
 16 * inspector/front-end/IndexedDBModel.js: Add new event type.
 17 (WebInspector.IndexedDBModel.prototype.loadedCallback): Dispatch an event whenever the cursor has finished loading.
 18 * inspector/front-end/ResourcesPanel.js:
 19 (WebInspector.IndexedDBTreeElement.prototype.findDatabaseTreeElement): Renamed from _idbDatabaseTreeElement.
 20 (WebInspector.IDBDatabaseTreeElement.prototype.findObjectStoreTreeElement): New to expose finding objectStores tree nodes by name.
 21
1222013-03-18 Allan Sandfeld Jensen <allan.jensen@digia.com>
223
324 Clean up RenderFrameSet::nodeAtPoint

Source/WebCore/inspector/InspectorIndexedDBAgent.cpp

5555#include "IDBMetadata.h"
5656#include "IDBObjectStore.h"
5757#include "IDBOpenDBRequest.h"
 58#include "IDBPendingTransactionMonitor.h"
5859#include "IDBRequest.h"
5960#include "IDBTransaction.h"
6061#include "InjectedScript.h"

@@public:
189190
190191 RefPtr<IDBDatabase> idbDatabase = requestResult->idbDatabase();
191192 m_executableWithDatabase->execute(idbDatabase);
 193 IDBPendingTransactionMonitor::deactivateNewTransactions();
192194 idbDatabase->close();
193195 }
194196

LayoutTests/platform/chromium/TestExpectations

@@webkit.org/b/106518 [ Lion MountainLion ] platform/chromium/virtual/softwarecomp
41314131
41324132webkit.org/b/101539 [ Linux Win ] editing/execCommand/switch-list-type-with-orphaned-li.html [ Failure ]
41334133
4134 webkit.org/b/101618 http/tests/inspector/indexeddb/database-data.html [ Pass Crash Slow ]
4135 
41364134webkit.org/b/90022 fast/canvas/canvas-resize-reset-pixelRatio.html [ WontFix ]
41374135webkit.org/b/90022 platform/chromium/virtual/gpu/fast/canvas/canvas-resize-reset-pixelRatio.html [ WontFix ]
41384136webkit.org/b/90022 fast/canvas/canvas-as-image-hidpi.html [ WontFix ]