chromium/content/test/data/accessibility/aria/aria-undefined.html

<!DOCTYPE html>
<!--
Test ARIA properties default values when attribute not present.
These are all the boolean and token attributes in ARIAConfig.js.
The results should be indentical to the results for aria-undefined-literal.html.
@BLINK-DENY:hierarchical*
@BLINK-DENY:*ForRange*
@BLINK-ALLOW:ariaCurrent*
@BLINK-ALLOW:autoComplete*
@BLINK-ALLOW:busy*
@BLINK-ALLOW:checked*
@BLINK-ALLOW:collapsed*
@BLINK-ALLOW:container*
@BLINK-ALLOW:disabled*
@BLINK-ALLOW:drop*
@BLINK-ALLOW:expanded*
@BLINK-ALLOW:haspopup*
@BLINK-ALLOW:horizontal*
@BLINK-ALLOW:invalid*
@BLINK-ALLOW:live*
@BLINK-ALLOW:modal*
@BLINK-ALLOW:multiline*
@BLINK-ALLOW:multiselect*
@BLINK-ALLOW:pressed*
@BLINK-ALLOW:required*
@BLINK-ALLOW:restriction*
@BLINK-ALLOW:select*
@BLINK-ALLOW:sort*
@BLINK-ALLOW:vertical*
-->
<html>
<body>
<div role="group" aria-label="Atomic undefined"></div>
<div role="textbox" aria-label="Autocomplete undefined"></div>
<div role="group" aria-label="Busy undefined"></div>
<div role="treeitem" aria-label="Checked undefined"></div>
<div role="group" aria-label="Current undefined"></div>
<div role="group" aria-label="Disabled undefined"></div>
<div role="treeitem" aria-label="Expanded undefined"></div>
<div role="group" aria-label="Grabbed undefined"></div>
<div role="button" aria-label="Haspopup undefined"></div>
<div role="group" aria-label="Invalid undefined"></div>
<div role="group" aria-label="Live undefined"></div>
<div role="dialog" aria-label="Modal undefined"></div>
<div role="textbox" aria-label="Multiline undefined"></div>
<div role="grid" aria-label="Multiselectable undefined"></div>
<div role="scrollbar" aria-label="Orientation undefined"></div>
<div role="button" aria-label="Pressed undefined"></div>
<div role="textbox" aria-label="Readonly undefined"></div>
<div role="group" aria-label="Relevant undefined"></div>
<div role="textbox" aria-label="Required undefined"></div>
<!-- Test selected inside multiselectable. -->
<div role="tree" aria-multiselectable="true">
  <div role="treeitem" aria-label="Selected undefined"></div>
</div>
<div role="grid">
  <div role="columnheader" aria-label="Sort undefined"></div>
</div>
<!-- Test aria-hidden at end because a broken test can have extra object,
     and ruin the rest of the test. -->
<div role="group" style="display: block" aria-label="Hidden undefined, display block"></div>
<div style="display: none" aria-label="Hidden undefined, display none"></div>
</body>
</html>