blob: ea41666163751e78d45e87fdf3e060455ecacc11 [file] [log] [blame]
<!doctype HTML>
<!--
Runs an acquire, with no commit.
The associated promise should never resolve.
-->
<style>
#container {
contain: style layout;
width: 100px;
height: 100px;
}
</style>
<div id="log"></div>
<script>
// TODO(vmpstr): In WPT this needs to be replaced with reftest-wait.
if (window.testRunner)
window.testRunner.waitUntilDone();
function finishTest(status_string) {
if (document.getElementById("log").innerHTML === "")
document.getElementById("log").innerHTML = status_string;
if (window.testRunner)
window.testRunner.notifyDone();
}
function runTest() {
let container = document.createElement("div");
container.id = "container";
container.getDisplayLock().acquire({ timeout: Infinity }).then(() => {
document.body.appendChild(container);
setTimeout(() => { finishTest("PASS"); }, 100);
});
}
window.onload = runTest;
</script>