diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/conformance-checkers/html-aria/presentational-children | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/html-aria/presentational-children')
5 files changed, 110 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-839.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-839.html new file mode 100644 index 0000000000..5a64d87858 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-839.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> + <head> + <title>ARIA 1.0 Test Case 839: Separator</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + </head> + <body> + <h1>ARIA 1.0 Test Case 839: Separator</h1> + + <div role="separator"> + <div>Test text content</div> + <label>Textbox <input type="text" value="123456789"></label> + <p><a href="#link">Test link</a></p> + <div role="button" onclick="alert('Button Pressed')">Button</div> + </div> + + + </body> + +</html> + + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-840.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-840.html new file mode 100644 index 0000000000..ed1f857bf7 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-840.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> + <head> + <title>ARIA 1.0 Test Case 840: progressbar</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + </head> + <body> + <h1>ARIA 1.0 Test Case 840: progressbar</h1> + + <div role="progressbar"> + <div>Test text content</div> + <label>Textbox <input type="text" value="123456789"></label> + <p><a href="#link">Test link</a></p> + <div role="button" onclick="alert('Button Pressed')">Button</div> + </div> + + + </body> + +</html> + + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-842.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-842.html new file mode 100644 index 0000000000..aa1cf57591 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-842.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> + <head> + <title>ARIA 1.0 Test Case 842: img</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + </head> + <body> + <h1>ARIA 1.0 Test Case 842: img</h1> + + <div role="img" aria-label="Test image"> + <div>Test text content</div> + <label>Textbox <input type="text" value="123456789"></label> + <p><a href="#link">Test link</a></p> + <div role="button" onclick="alert('Button Pressed')">Button</div> + </div> + + + </body> + +</html> + + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-843.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-843.html new file mode 100644 index 0000000000..cae563fc7e --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-843.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> + <head> + <title>ARIA 1.0 Test Case 843: slider</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + </head> + <body> + <h1>ARIA 1.0 Test Case 843: slider</h1> + + <div role="slider" aria-valuemin="0" aria-valuenow="5" aria-valuemax="10"> + <div>Test text content</div> + <label>Textbox <input type="text" value="123456789"></label> + <p><a href="#link">Test link</a></p> + <div role="button" onclick="alert('Button Pressed')">Button</div> + </div> + + + </body> + +</html> + + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-844.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-844.html new file mode 100644 index 0000000000..8690b3fcca --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentational-children/testcase-844.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html> + <head> + <title>ARIA 1.0 Test Case 844: math</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + </head> + <body> + <h1>ARIA 1.0 Test Case 844: math</h1> + + <div role="math" aria-label="a plus b equals c"> + <div>Test text content</div> + <label>Textbox <input type="text" value="123456789"></label> + <p><a href="#link">Test link</a></p> + <div role="button" onclick="alert('Button Pressed')">Button</div> + </div> + + + </body> + +</html> + + |