| Index: content/test/data/accessibility/aom/aom-readonly.html
|
| diff --git a/content/test/data/accessibility/aom/aom-readonly.html b/content/test/data/accessibility/aom/aom-readonly.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..70a5c1f64e15c0e863d6e7408bbc1e50ddb521e2
|
| --- /dev/null
|
| +++ b/content/test/data/accessibility/aom/aom-readonly.html
|
| @@ -0,0 +1,14 @@
|
| +<!--
|
| +@MAC-ALLOW:AXValue=*
|
| +@BLINK-ALLOW:canSetValue*
|
| +-->
|
| +<html>
|
| +<body>
|
| + <input id="readonlyfalse" tabindex="0" value="Editable text">
|
| + <input id="readonlytrue" tabindex="1" value="Uneditable text">
|
| + <script>
|
| + document.getElementById("readonlyfalse").accessibleNode.readOnly = false;
|
| + document.getElementById("readonlytrue").accessibleNode.readOnly = true;
|
| + </script>
|
| +</body>
|
| +</html>
|
|
|