qt5base-lts/tests/manual/wasm/a11y/basic_widgets/basic_widgets.html
Morten Sørvig 9be0f2945d wasm: begin work on accessibility backend
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>
2022-07-06 17:56:58 +02:00

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>