Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(929)

Unified Diff: third_party/WebKit/LayoutTests/inspector/storage-panel-dom-storage.html

Issue 1877223003: DevTools: deprecate InspectorTest.runAfterPendingDispatches (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector/storage-panel-dom-storage.html
diff --git a/third_party/WebKit/LayoutTests/inspector/storage-panel-dom-storage.html b/third_party/WebKit/LayoutTests/inspector/storage-panel-dom-storage.html
index af29f963a4681f014eee09ae83b20bcdb8a9bca1..71801f953ef2d3c44f1f0b16c79e26cbf2984451 100644
--- a/third_party/WebKit/LayoutTests/inspector/storage-panel-dom-storage.html
+++ b/third_party/WebKit/LayoutTests/inspector/storage-panel-dom-storage.html
@@ -39,7 +39,7 @@ function test()
InspectorTest.addResult("KeyValue pairs: " + rows.join(''));
}
- InspectorTest.runAfterPendingDispatches(function() {
+ InspectorTest.deprecatedRunAfterPendingDispatches(function() {
var storages = InspectorTest.domStorageModel().storages();
if (storages) {
for (var i = 0; i < storages.length; i++) {
@@ -50,7 +50,7 @@ function test()
} else
InspectorTest.addResult("FAIL: no DOM storages found.");
- InspectorTest.runAfterPendingDispatches(function() {
+ InspectorTest.deprecatedRunAfterPendingDispatches(function() {
var storages = InspectorTest.domStorageModel().storages();
for (var i = 0; i < storages.length; i++) {
var storage = storages[i];

Powered by Google App Engine
This is Rietveld 408576698