diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /testing/web-platform/tests/conformance-checkers/html-aria/presentation-role | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/html-aria/presentation-role')
29 files changed, 406 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/497.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/497.html new file mode 100644 index 000000000..5efa4ab77 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/497.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 497 Image element with role="presentation" but with a reference to a description </title> +</head> +<body> +<img src="foo.jpg" alt="test1" width="40" height="40" role="presentation" aria-describedby="foo"/> +<p id="foo"> +This is an image. +</p> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/498.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/498.html new file mode 100644 index 000000000..834ba206d --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/498.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 498 Image element with role="presentation" but aria-disabled="true" </title> +</head> +<body> +<img src="foo.jpg" alt="test1" width="40" height="40" role="presentation" aria-disabled="true"/> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/499.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/499.html new file mode 100644 index 000000000..ad2dee407 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/499.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 499 Image element with role="presentation" but aria-dropeffect="move" </title> +</head> +<body> +<img src="foo.jpg" alt="test1" width="40" height="40" role="presentation" aria-dropeffect="move"/> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/500.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/500.html new file mode 100644 index 000000000..578e7a2db --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/500.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 500 Image element with role="presentation" but with a valid aria-flowto attribute</title> +</head> +<body> +<img src="foo.jpg" alt="test1" width="40" height="40" role="presentation" aria-flowto="test2"/> +<div role="img" id="test2"> +</div> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/501.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/501.html new file mode 100644 index 000000000..77cfc2ede --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/501.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 501 Image element with role="presentation" but with aria-grabbed="true"</title> +</head> +<body> +<img src="foo.jpg" alt="test1" width="40" height="40" role="presentation" aria-grabbed="true"/> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/502.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/502.html new file mode 100644 index 000000000..ae8c74d5c --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/502.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 502 Image element with role="presentation" but with aria-haspopup="true"</title> +</head> +<body> +<img src="foo.jpg" alt="test1" width="40" height="40" role="presentation" aria-haspopup="true"/> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/503.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/503.html new file mode 100644 index 000000000..385914252 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/503.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 503 Image element with role="presentation" but with aria-hidden="true"</title> +</head> +<body> +<img src="foo.jpg" alt="test1" width="40" height="40" role="presentation" aria-hidden="true"/> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/504.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/504.html new file mode 100644 index 000000000..ea19a4359 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/504.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 504 Image element with role="presentation" but with aria-invalid="true"</title> +</head> +<body> +<img src="foo.jpg" alt="test1" width="40" height="40" role="presentation" aria-invalid="true"/> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/505.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/505.html new file mode 100644 index 000000000..163156413 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/505.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 505 Image element with role="presentation" but with aria-label="test"</title> +</head> +<body> +<img src="foo.jpg" alt="test1" width="40" height="40" role="presentation" aria-label="test"/> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/506.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/506.html new file mode 100644 index 000000000..495763d77 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/506.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 506 Image element with role="presentation" but with a valid aria-labelledby attribute</title> +</head> +<body> +<img src="foo.jpg" alt="test1" width="40" height="40" role="presentation" aria-labelledby="test2"/> +<div id="test2"> +test_label +</div> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/507.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/507.html new file mode 100644 index 000000000..09e685965 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/507.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 507 Image element with role="presentation" but with aria-live="assertive"</title> +</head> +<body> +<img src="foo.jpg" alt="test1" width="40" height="40" role="presentation" aria-live="assertive"/> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/509.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/509.html new file mode 100644 index 000000000..9780ce2ac --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/509.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 509 Image element with role="presentation" but with aria-relevant="text"</title> +</head> +<body> +<img src="foo.jpg" alt="test1" width="40" height="40" role="presentation" aria-live="polite" aria-relevant="text"/> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/510.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/510.html new file mode 100644 index 000000000..05c50a161 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/510.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 510 An owned, unfocusable, element untied to an aria relationship that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td>Test me</td> +</tr> +</table> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/511.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/511.html new file mode 100644 index 000000000..d9a3043fe --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/511.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 511 An owned, focusable element, tied to an aria relationship that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td tabindex="0" id="foo">Test me</td> +</tr> +</table> +<div aria-controls="foo"> +</div> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/512.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/512.html new file mode 100644 index 000000000..35c0a5ef0 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/512.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 512 An owned, unfocusable element, having aria-atomic="true" that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-atomic="true">Test me</td> +</tr> +</table> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/513.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/513.html new file mode 100644 index 000000000..4a908544f --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/513.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 513 An owned, unfocusable element, having aria-busy="true" that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-busy="true">Test me</td> +</tr> +</table> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/514.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/514.html new file mode 100644 index 000000000..0f7c34800 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/514.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 514 An owned, unfocusable element, with a valid aria-controls attribue set that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-controls="foo">Test me</td> +</tr> +</table> +<div id="foo"> +</div> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/515.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/515.html new file mode 100644 index 000000000..de4d7caa2 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/515.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 515 An owned, unfocusable element, with a valid aria-describedby attribue set that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-describedby="foo">Test me</td> +</tr> +</table> +<div id="foo"> +You can +</div> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/516.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/516.html new file mode 100644 index 000000000..dacee180c --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/516.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 516 An owned, unfocusable element, having aria-disabled="true" that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-disabled="true">Test me</td> +</tr> +</table> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/517.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/517.html new file mode 100644 index 000000000..3154b9da2 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/517.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 517 An owned, unfocusable element, having aria-dropeffect="move" that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-dropeffect="move">Test me</td> +</tr> +</table> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/518.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/518.html new file mode 100644 index 000000000..a2c85521c --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/518.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 518 An owned, unfocusable element, with a valid aria-flowto attribue set that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-flowto="foo">Test me</td> +</tr> +</table> +<div id="foo"> +You can +</div> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/519.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/519.html new file mode 100644 index 000000000..8ff435f4d --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/519.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 519 An owned, unfocusable element, having aria-grabbed="true" that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-grabbed="true">Test me</td> +</tr> +</table> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/520.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/520.html new file mode 100644 index 000000000..9b7bee0f6 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/520.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 520 An owned, unfocusable element, having aria-haspopup="true" that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-haspopup="true">Test me</td> +</tr> +</table> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/521.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/521.html new file mode 100644 index 000000000..c98a873d6 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/521.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 521 An owned, unfocusable element, having aria-hidden="true" that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-hidden="true">Test me</td> +</tr> +</table> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/522.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/522.html new file mode 100644 index 000000000..1d18a47b8 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/522.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 522 An owned, unfocusable element, having aria-invalid="true" that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-invalid="true">Test me</td> +</tr> +</table> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/523.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/523.html new file mode 100644 index 000000000..7a2ba4138 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/523.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 523 An owned, unfocusable element, having aria-label="test" that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-label="test">foo</td> +</tr> +</table> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/524.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/524.html new file mode 100644 index 000000000..b624f041a --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/524.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 524 An owned, unfocusable element, with a valid aria-labelledby attribute set that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-labelledby="foo"></td> +</tr> +</table> +<div id="foo">test</div> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/525.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/525.html new file mode 100644 index 000000000..cf97c15f6 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/525.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 525 An owned, unfocusable element, having aria-live="assertive" that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-live="assertive">test</td> +</tr> +</table> +</body> +</html> + diff --git a/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/527.html b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/527.html new file mode 100644 index 000000000..a7a6e751c --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-aria/presentation-role/527.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset=utf-8> +<title>Test 527 An owned, unfocusable element, having aria-relevant="text" that inherits role="presentation"</title> +</head> +<body> +<table role="presentation"> +<tr> +<td aria-relevant="text">test</td> +</tr> +</table> +</body> +</html> + |