gecko-dev/testing/web-platform/tests/wai-aria/checkbox_readonly_true-manual.html
Geoffrey Sneddon f1ec562e32 Bug 1459695 [wpt PR 10876] - Run parsed lints on manual and visual tests, a=testonly
Automatic update from web-platform-testsFix #10875: run parsed lints for visual tests

CSS tests, due to their metadata requirement, default to visual tests,
hence it's important we run all of these lints (to in this case catch
../testharness.js)

--
Extend the previous commit to also check manual tests

Plenty of manual tests use testharness.js so we should check them too,
and indeed there's plenty of broken tests so fix them too

--

wpt-commits: b54c11b055959abeefafcde601853ea4cb247e0b, c327c2747db6b71c8c45f61e0a97785a9be622c2
wpt-pr: 10876
2018-05-18 11:15:13 +01:00

127 lines
3.2 KiB
HTML

<!doctype html>
<html>
<head>
<title>checkbox readonly true</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<link rel="stylesheet" href="/wai-aria/scripts/manual.css">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/wai-aria/scripts/ATTAcomm.js"></script>
<script>
setup({explicit_timeout: true, explicit_done: true });
var theTest = new ATTAcomm(
{
"steps" : [
{
"element" : "test",
"test" : {
"ATK" : [
[
"property",
"role",
"is",
"ROLE_CHECK_BOX"
],
[
"property",
"states",
"doesNotContain",
"STATE_CHECKABLE"
],
[
"property",
"states",
"contains",
"STATE_READ_ONLY"
]
],
"AXAPI" : [
[
"property",
"AXRole",
"is",
"AXCheckBox"
],
[
"property",
"AXSubrole",
"is",
"<nil>"
],
[
"property",
"AXRoleDescription",
"is",
"checkbox"
],
[
"result",
"AXUIElementIsAttributeSettable(AXValue)",
"is",
"false"
]
],
"IAccessible2" : [
[
"property",
"objectAttributes",
"contains",
"checkable:true"
],
[
"property",
"states",
"doesNotContain",
"IA2_STATE_EDITABLE"
]
],
"MSAA" : [
[
"property",
"role",
"is",
"ROLE_SYSTEM_CHECKBUTTON"
],
[
"property",
"states",
"contains",
"STATE_SYSTEM_READONLY"
]
],
"UIA" : [
[
"property",
"ControlType",
"is",
"Checkbox"
],
[
"property",
"Value.IsReadOnly",
"is",
"true"
]
]
},
"title" : "step 1",
"type" : "test"
}
],
"title" : "checkbox readonly true"
}
) ;
</script>
</head>
<body>
<p>This test examines the ARIA properties for checkbox readonly true.</p>
<div id="test" aria-readonly="true" role="checkbox">test cell</div>
<div id="manualMode"></div>
<div id="log"></div>
<div id="ATTAmessages"></div>
</body>
</html>