blob: a9c4f796a2bd6bb0db5cbf4a4cb7ef05fdec17d2 [file] [log] [blame]
<!doctype HTML>
<!--
Runs an acquireDisplayLock, which appends the first child and schedules two
continuations, which append the second and the third children.
-->
<style>
#container {
contain: content;
width: 150px;
height: 150px;
background: lightblue;
}
#child1 {
width: 20px;
height: 20px;
background: lightgreen;
}
#child2 {
width: 20px;
height: 20px;
background: lightyellow;
}
#child3 {
width: 20px;
height: 20px;
background: lightpink;
}
</style>
<div id="log"></div>
<script>
if (window.testRunner)
window.testRunner.waitUntilDone();
function createChild(id) {
let child = document.createElement("div");
child.id = id;
return child;
}
function addChild3(context) {
context.lockedElement.appendChild(createChild("child3"));
}
function addChild2(context) {
context.lockedElement.appendChild(createChild("child2"));
}
function addChild1(context) {
context.lockedElement.appendChild(createChild("child1"));
context.schedule(addChild2);
context.schedule(addChild3);
}
function finishTest(status_string) {
if (document.getElementById("log").innerHTML === "")
document.getElementById("log").innerHTML = status_string;
if (window.testRunner)
window.testRunner.notifyDone();
}
function acquire() {
let container = document.createElement("div");
container.id = "container";
container.acquireDisplayLock(addChild1).then(
() => { finishTest("PASS"); },
() => { finishTest("FAIL"); });
document.body.appendChild(container);
}
window.onload = acquire;
</script>