@@ -55,7 +55,7 @@
diff --git a/html/semantics/popups/popup-stacking.tentative.html b/html/semantics/popups/popup-stacking.tentative.html
index 6af6a9cb7e6e1c..e9e987ea2ff2fc 100644
--- a/html/semantics/popups/popup-stacking.tentative.html
+++ b/html/semantics/popups/popup-stacking.tentative.html
@@ -67,18 +67,18 @@
This is popup #1
-
-
+
+
This is popup #2
-
+
-
+
-
+
@@ -74,15 +74,15 @@
}
test(() => {
assert_state_2(false,false,false,false);
- popup1.showPopup();
- popup2.showPopup();
- popup3.showPopup();
+ popup1.showPopUp();
+ popup2.showPopUp();
+ popup3.showPopUp();
assert_state_2(true,true,true,false);
- hint2.showPopup();
+ hint2.showPopUp();
assert_state_2(true,true,true,true);
- popup3.hidePopup(); // Should close the hint
+ popup3.hidePopUp(); // Should close the hint
assert_state_2(true,true,false,false);
- popup1.hidePopup();
+ popup1.hidePopUp();
assert_state_2(false,false,false,false);
},'hint, even with popup ancestor, closes with first popup');