On 6/17/20 6:34 PM, Aaron wrote: > I'm testing in Buster using the MATE DE with Chromium 80. > ... > Everything seems to work in Firefox with Orca (annoying, but working). > > Just realized that I forgot to use the --force-render-accessibility flag when starting Chromium. Using that flag, Orca works about the same in Chromium as in Firefox, including the description of the prompt and the reading of the rendered text, so I assume this is a problem with the braille display.
Here is the HTML again: <!DOCTYPE html> <html lang="en"> <head> <title>Javascript Accessibility Experiment</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head> <body> <script> function nextMove(curresp) { response = curresp; document.write("You responded " + response + "<br>"); return true; } response = window.prompt("What is your response?"); nextMove(response); </script> </body></html>