| Index: third_party/WebKit/LayoutTests/http/tests/inspector/bindings/bindings-frame-attach-detach.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/bindings-frame-attach-detach.html b/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/bindings-frame-attach-detach.html
|
| index dc39f164a17e15356bd1940ab5a8cdd2a1f6bd6a..dded38bc85b1b487c925c528624c10b97c8a3ddc 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/bindings-frame-attach-detach.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/bindings-frame-attach-detach.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('detachFrame');
|
| await InspectorTest.detachFrame('frame', '_test_detachFrame.js');
|
| - InspectorTest.dumpWorkspace();
|
| + snapshot = InspectorTest.dumpWorkspace(snapshot);
|
|
|
| InspectorTest.completeTest();
|
| }
|
|
|