diff options
Diffstat (limited to 'tests/unit/core/core.html')
-rw-r--r-- | tests/unit/core/core.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/unit/core/core.html b/tests/unit/core/core.html index 5a089aa7b..93f0156fd 100644 --- a/tests/unit/core/core.html +++ b/tests/unit/core/core.html @@ -81,10 +81,20 @@ <input id="visibilityHiddenAncestor-input"> <span tabindex="1" id="visibilityHiddenAncestor-span">.</span> - <span id="nestedVisibilityOverrideAncestor" style="visibility: visible"> + <span id="nestedVisibilityOverrideAncestor" style="visibility: visible;"> <input id="nestedVisibilityOverrideAncestor-input"> <span tabindex="1" id="nestedVisibilityOverrideAncestor-span">.</span> </span> + + <span tabIndex="1" id="nestedVisibilityInheritWithHiddenAncestor" + style="visibility: inherit;">.</span> + <input id="nestedVisibilityInheritWithHiddenAncestor-input" style="visibility: inherit;"> + </div> + + <div id="visibilityVisibleAncestor" style="visibility: visible;"> + <span tabIndex="1" id="nestedVisibilityInheritWithVisibleAncestor" + style="visibility: inherit;">.</span> + <input id="nestedVisibilityInheritWithVisibleAncestor-input" style="visibility: inherit;"> </div> <span tabindex="1" id="displayNone-span" style="display: none;">.</span> |