mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Update web-platform-tests to revision 0d318188757a9c996e20b82db201fd04de5aa255
This commit is contained in:
parent
b2a5225831
commit
1a81b18b9f
12321 changed files with 544385 additions and 6 deletions
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>DIV with aria-labelledby="ID1" and aria-label is not specified and title is not specified.</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="test" aria-labelledby='ID1'>aria-labelledby='ID1'</div>
|
||||
<span id="ID1">Label for 'test' element</span>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>DIV with aria-label="Tag" and aria-labelledby is not specified and title is not specified..</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="test" aria-label='Tag'>aria-label='Tag'</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>DIV with aria-labelledby="ID1" aria-label="Tag" and title is not specified.</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="test" aria-labelledby="ID1" aria-label='Tag'>aria-labelledby="ID1" aria-label='Tag'</div>
|
||||
<span id="ID1">Element with id='ID1'</span>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>DIV with id="ID0" and aria-labelledby="ID0 ID1" and aria-label="Tag" and title is not specified.</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="test" aria-labelledby="ID0 ID1" aria-label="Tag">aria-labelledby="ID0 ID1" aria-label='Tag'</div>
|
||||
<span id="ID0">Element with id='ID0'</span>
|
||||
<span id="ID1">Element with id='ID1'</span>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>DIV with text and aria-label is not specified and aria-labelledby is not specified and title is not specified and role is not specified.</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="test">Div with text</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>DIV with text and role="button" and aria-label is not specified and aria-labelledby is not specified and title is not specified.</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="test" role="button">Div with role of button, with text.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>DIV with text and role="button" and title="Tag" and aria-label is not specified and aria-labelledby is not specified.</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="test" role="button" title="Tag" style="outline:medium solid black; width:2em; height:1em;"></div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,2 @@
|
|||
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>< href="test.html" aria-labelledby="ID1"> ABC </A> and aria-label is not specified and title is not specified.</title>
</head>
<body>
|
||||
<div id="ID1">Nifty</div>
<a href="test.html" aria-labelledby="ID1">ABC</a>
</body>
</html>
|
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>aria-label on anchor (without aria-labelledby or title attribute)</title>
|
||||
</head>
|
||||
<body>
|
||||
<a id="test" href="test.html" aria-label="Tag">ABC</a>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Aria-label on anchor with aria-labelledby (no title attribute)</title>
|
||||
</head>
|
||||
<body>
|
||||
<a href="test.html" id="test" aria-labelledby="ID1" aria-label="Tag">ABC</a>
|
||||
<p id="ID1">Here is some labelledby text</p>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>aria-label on anchor with two aria-labelledby ids (no title attribute)</title>
|
||||
</head>
|
||||
<body>
|
||||
<a href="test.html" id="ID0" aria-labelledby="ID0 ID1" aria-label="Tag"></a>
|
||||
<p id="ID1">Also labelledby text ID1</p>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Anchor with no aria-label, no aria-labelledby, no title attribute</title>
|
||||
</head>
|
||||
<body>
|
||||
<a href="test.html" id="test">ABC</a>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Title attribute, no aria-label, aria-labelledby</title>
|
||||
</head>
|
||||
<body>
|
||||
<a href="test.html" id="test" title="Tag"></a>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Tree item with text value "Animals" with two descendant tree items with text value "Cats" and "Dogs".</title>
|
||||
</head>
|
||||
<body>
|
||||
<ul id="tree0" role="tree" aria-activedescendant="tree0_item0" tabindex="0">
|
||||
<li id="tree0_item0" role="treeitem" aria-level="1" aria-expanded="true">
|
||||
Animals
|
||||
<ul role="group">
|
||||
<li id="tree0_item0_1" role="treeitem" aria-level="2" aria-expanded="true">Cats</li>
|
||||
<li id="tree0_item0_2" role="treeitem" aria-level="2" aria-expanded="true">Dogs</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue