Index: third_party/WebKit/LayoutTests/http/tests/inspector/bindings/bindings-frame-navigate.html |
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/bindings-frame-navigate.html b/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/bindings-frame-navigate.html |
index aba43849aaa0c27fa3286f36dc68066b6c4b0756..2978f4eb972d6e81f48fe356d8453f038fdd9883 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/bindings-frame-navigate.html |
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/bindings-frame-navigate.html |
@@ -8,15 +8,15 @@ |
async function test() |
{ |
InspectorTest.markStep('dumpInitialWorkspace'); |
- InspectorTest.dumpWorkspace(); |
+ var snapshot = InspectorTest.dumpWorkspace(); |
InspectorTest.markStep('attachFrame'); |
await InspectorTest.attachFrame('frame', './resources/magic-frame.html', '_test_attachFrame.js'); |
- InspectorTest.dumpWorkspace(); |
+ snapshot = InspectorTest.dumpWorkspace(snapshot); |
InspectorTest.markStep('navigateFrame'); |
await InspectorTest.navigateFrame('frame', './resources/empty-frame.html', '_test_navigateFrame'); |
- InspectorTest.dumpWorkspace(); |
+ snapshot = InspectorTest.dumpWorkspace(snapshot); |
InspectorTest.completeTest(); |
} |