-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2165 from IBMa/dev-2123
sync dev-2123 to dev-2123-v4
- Loading branch information
Showing
3 changed files
with
76 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
...test/v2/checker/accessibility/rules/aria_descendant_valid_ruleunit/aria_own_circular.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-US"> | ||
|
||
<head> | ||
<title>Sandbox</title> | ||
<meta charset="UTF-8" /> | ||
</head> | ||
|
||
<body> | ||
<div class="mm-panels"> | ||
<div id="mm-1" class="mm-panel mm-panel_opened"> | ||
<ul class="mm-listview"> | ||
<li class="mm-listitem"><a href="#mm-2" aria-owns="mm-2">Open submenu</a> | ||
<li class="mm-listitem"><a href="#mm-3" aria-owns="mm-3">Open Another submenu</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<div id="mm-3"> | ||
<div class="mm-navbar"><a href="#mm-1" aria-owns="mm-1">Close submenu</a> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
<script> | ||
UnitTest = { | ||
ruleIds: ["aria_descendant_valid"], | ||
results: [ | ||
|
||
] | ||
} | ||
</script> | ||
</body> | ||
|
||
</html> |