diff --git a/core/modules/outside_in/tests/src/FunctionalJavascript/OutsideInBlockFormTest.php b/core/modules/outside_in/tests/src/FunctionalJavascript/OutsideInBlockFormTest.php
index 4e519f6f8b..236e3b4bb3 100644
--- a/core/modules/outside_in/tests/src/FunctionalJavascript/OutsideInBlockFormTest.php
+++ b/core/modules/outside_in/tests/src/FunctionalJavascript/OutsideInBlockFormTest.php
@@ -243,6 +243,10 @@ protected function openBlockForm($block_selector, $contextual_link_container = '
     $this->click($block_selector);
     $this->waitForOffCanvasToOpen();
     $this->assertOffCanvasBlockFormIsValid();
+    // Confirm the Contextual link container is also the active editable now.
+    $this->assertSession()->elementExists('css', "$contextual_link_container.outside-in-active-editable");
+    // Assert that no other element is set as active.
+    $this->assertEquals(1, count($this->getSession()->getPage()->findAll('css', '.outside-in-active-editable')));
   }
 
   /**
