| Index: content/test/data/accessibility/aom/aom-multiline.html
|
| diff --git a/content/test/data/accessibility/aom/aom-multiline.html b/content/test/data/accessibility/aom/aom-multiline.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c258667de94a1d5330f94b4116dae39a66bb5072
|
| --- /dev/null
|
| +++ b/content/test/data/accessibility/aom/aom-multiline.html
|
| @@ -0,0 +1,19 @@
|
| +<!--
|
| +@MAC-ALLOW:AXRole*
|
| +@WIN-ALLOW:IA2_STATE_SINGLE_LINE
|
| +@WIN-ALLOW:IA2_STATE_MULTI_LINE
|
| +@WIN-ALLOW:xml-roles*
|
| +@BLINK-ALLOW:multiline*
|
| +-->
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<body>
|
| + <div role="textbox" id="multilinefalse"></div>
|
| + <div role="textbox" id="multilinetrue"></div>
|
| +
|
| + <script>
|
| + document.getElementById("multilinefalse").accessibleNode.multiline = false;
|
| + document.getElementById("multilinetrue").accessibleNode.multiline = true;
|
| + </script>
|
| +</body>
|
| +</html>
|
|
|