mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-07-07 01:35:25 +08:00
qt 6.6.0 clean
This commit is contained in:
66
tests/manual/wasm/qwasmwindow/qwasmwindow_harness.html
Normal file
66
tests/manual/wasm/qwasmwindow/qwasmwindow_harness.html
Normal file
@ -0,0 +1,66 @@
|
||||
<!doctype html>
|
||||
|
||||
<head>
|
||||
<script type="text/javascript" src="qwasmwindow_harness.js"></script>
|
||||
<script>
|
||||
(async () => {
|
||||
const instance = await createQtAppInstance({});
|
||||
window.instance = instance;
|
||||
|
||||
const testSandbox = document.createElement('div');
|
||||
testSandbox.id = 'test-sandbox';
|
||||
document.body.appendChild(testSandbox);
|
||||
|
||||
const makeSizedDiv = (left, top, width, height) => {
|
||||
const screenDiv = document.createElement('div');
|
||||
|
||||
screenDiv.style.left = `${left}px`;
|
||||
screenDiv.style.top = `${top}px`;
|
||||
screenDiv.style.width = `${width}px`;
|
||||
screenDiv.style.height = `${height}px`;
|
||||
screenDiv.style.backgroundColor = 'lightblue';
|
||||
|
||||
return screenDiv;
|
||||
};
|
||||
|
||||
window.testSupport = {
|
||||
initializeScreenWithFixedPosition: (left, top, width, height) => {
|
||||
const screenDiv = makeSizedDiv(left, top, width, height);
|
||||
testSandbox.appendChild(screenDiv);
|
||||
|
||||
screenDiv.style.position = 'fixed';
|
||||
instance.qtAddContainerElement(screenDiv);
|
||||
|
||||
return screenDiv;
|
||||
},
|
||||
initializeScreenWithRelativePosition: (left, top, width, height) => {
|
||||
const screenDiv = makeSizedDiv(left, top, width, height);
|
||||
testSandbox.appendChild(screenDiv);
|
||||
|
||||
screenDiv.style.position = 'relative';
|
||||
instance.qtAddContainerElement(screenDiv);
|
||||
|
||||
return screenDiv;
|
||||
},
|
||||
initializeScreenInScrollContainer:
|
||||
(scrollWidth, scrollHeight, left, top, width, height) => {
|
||||
const scrollContainer = document.createElement('div');
|
||||
scrollContainer.style.height = `${scrollHeight}px`;
|
||||
scrollContainer.style.width = `${scrollWidth}px`;
|
||||
testSandbox.appendChild(scrollContainer);
|
||||
|
||||
const screenDiv = makeSizedDiv(left, top, width, height);
|
||||
scrollContainer.appendChild(screenDiv);
|
||||
screenDiv.style.position = 'relative';
|
||||
|
||||
instance.qtAddContainerElement(screenDiv);
|
||||
|
||||
return [scrollContainer, screenDiv];
|
||||
}
|
||||
};
|
||||
})();
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
Reference in New Issue
Block a user