diff options
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required')
7 files changed, 84 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-checkbox-aria-checked-false.html b/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-checkbox-aria-checked-false.html new file mode 100644 index 0000000000..21e7b0366a --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-checkbox-aria-checked-false.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title><div> with role checkbox; required state or property "aria-checked" value of "false"</title> + </head> + <body> + <div id="test" role="checkbox" aria-checked="false">Placeholder content</div> + <div id="obj1">obj1</div> + <div id="obj2">obj2</div> + </body> +</html>
\ No newline at end of file diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-checkbox-aria-checked-mixed.html b/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-checkbox-aria-checked-mixed.html new file mode 100644 index 0000000000..09200351ed --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-checkbox-aria-checked-mixed.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title><div> with role checkbox; required state or property "aria-checked" value of "mixed"</title> + </head> + <body> + <div id="test" role="checkbox" aria-checked="mixed">Placeholder content</div> + <div id="obj1">obj1</div> + <div id="obj2">obj2</div> + </body> +</html>
\ No newline at end of file diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-checkbox-aria-checked-true.html b/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-checkbox-aria-checked-true.html new file mode 100644 index 0000000000..295d992b10 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-checkbox-aria-checked-true.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title><div> with role checkbox; required state or property "aria-checked" value of "true"</title> + </head> + <body> + <div id="test" role="checkbox" aria-checked="true">Placeholder content</div> + <div id="obj1">obj1</div> + <div id="obj2">obj2</div> + </body> +</html>
\ No newline at end of file diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-checkbox-aria-checked-undefined.html b/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-checkbox-aria-checked-undefined.html new file mode 100644 index 0000000000..250454f822 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-checkbox-aria-checked-undefined.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title><div> with role checkbox; required state or property "aria-checked" value of "undefined"</title> + </head> + <body> + <div id="test" tabindex="0" role="checkbox" aria-checked="undefined">Placeholder content</div> + <div id="obj1">obj1</div> + <div id="obj2">obj2</div> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-combobox-aria-expanded-false.html b/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-combobox-aria-expanded-false.html new file mode 100644 index 0000000000..751747aec5 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-combobox-aria-expanded-false.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title><div> with role combobox; required state or property "aria-expanded" value of "false"</title> + </head> + <body> + <div id="test" role="combobox" aria-expanded="false">Placeholder content</div> + <div id="obj1">obj1</div> + <div id="obj2">obj2</div> + </body> +</html>
\ No newline at end of file diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-combobox-aria-expanded-true.html b/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-combobox-aria-expanded-true.html new file mode 100644 index 0000000000..46cd8e5061 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-combobox-aria-expanded-true.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title><div> with role combobox; required state or property "aria-expanded" value of "true"</title> + </head> + <body> + <div id="test" role="combobox" aria-expanded="true">Placeholder content</div> + <div id="obj1">obj1</div> + <div id="obj2">obj2</div> + </body> +</html>
\ No newline at end of file diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-combobox-aria-expanded-undefined.html b/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-combobox-aria-expanded-undefined.html new file mode 100644 index 0000000000..58ea1d313c --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/roles-properties-required/roles-properties-required-combobox-aria-expanded-undefined.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title><div> with role combobox; required state or property "aria-expanded" value of "undefined"</title> + </head> + <body> + <div id="test" role="combobox" aria-expanded="undefined">Placeholder content</div> + <div id="obj1">obj1</div> + <div id="obj2">obj2</div> + </body> +</html>
\ No newline at end of file |