blob: 7b4c6752668bdfb029305ea02b84810d923af760 [file] [log] [blame]
<!DOCTYPE HTML>
<style>
#DIV1 { -webkit-flow-into:flowA; }
#SPAN2 { -webkit-flow-into: flowB; }
#DIV3 { -webkit-flow-into: flowC; }
#REGION1, #REGION2, #REGION3 {
width: 100%;
height: 100px;
}
#REGION1 { -webkit-flow-from: flowA; }
#REGION2 { -webkit-flow-from: flowB; }
#REGION3 { -webkit-flow-from: flowC; }
</style>
<div id="DIV1">DIV1 - flowA</div>
<span id="SPAN2">SPAN2 - flowB</span>
<div id="DIV3">DIV3 - flowC</div>
<!-- Make some regions, so that the flow has a size and it's visible in the render tree. -->
<div id="REGION1"></div>
<div id="REGION2"></div>
<div id="REGION3"></div>
<script>
function test(name, flow, before) {
var el = document.createElement("div");
el.id = name;
el.setAttribute("style", "-webkit-flow-into:"+ flow);
el.innerHTML = name + " - " + flow;
if (before)
document.body.insertBefore(el, document.getElementById(before));
else
document.body.appendChild(el);
}
// Insert a new element in flowA, before DIV1 (same flow-thread).
test("DIV4", "flowA", "DIV1");
// Insert a new element in flowB, before DIV1 (different flow-thread).
test("DIV5", "flowB", "DIV1");
// Insert a new element in flowB, before DIV3 (different flow-thread).
test("DIV6", "flowB", "DIV3");
// Insert a new element in flowB, before SPAN2 (same flow-thread, span inside anonymous block).
test("DIV7", "flowB", "SPAN2");
// Append a new element in flowC.
test("DIV8", "flowC");
</script>