blob: 69535cbd206e97c8b5789a7188755d7463349fde [file] [edit]
<!DOCTYPE html><!-- webkit-test-runner [ SpatialPortalEnabled=true ] -->
<html>
<script src="../resources/ui-helper.js"></script>
<body>
<div id="portal" style="spatial: portal; width: 300px; height: 150px;">
<span id="content">Hello!</span>
</div>
<pre id="results"></pre>
<script>
window.onload = async function () {
window.testRunner?.waitUntilDone();
window.testRunner?.dumpAsText();
await UIHelper.ensureStablePresentationUpdate();
results.textContent = window.internals?.layerTreeAsText(document) ?? "This test requires window.internals.";
document.getElementById("portal").remove();
window.testRunner?.notifyDone();
};
</script>
</body>
</html>