9be0f2945d
Implement a11y support by adding html elements of the appropriate type and/or with the appropriate ARIA attribute behind the canvas. Also add a simple manual-test. Change-Id: I2898fb038c1d326135a1341cdee323bc964420bb Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
25 lines
448 B
HTML
25 lines
448 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<script src="a11y_basic_widgets.js" async></script>
|
|
|
|
<script>
|
|
window.onload = async () => {
|
|
let qt_instance = await createQtAppInstance({
|
|
qtContainerElements: [document.getElementById("qt_container")],
|
|
});
|
|
}
|
|
</script>
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Qt Accessibility Tester</H1>
|
|
<div id="qt_container" style="width:640px; height:640px"></div>
|
|
</body>
|
|
|
|
</html>
|