mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
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>
|