<!-- this test should display two identical yellow squares --> | |
<style type="text/css"> | |
h1{ | |
outline: 5px solid yellow; | |
} | |
#source{ | |
-webkit-flow-into: body; | |
} | |
#region{ | |
-webkit-flow-from: body; | |
} | |
div{ | |
width:200px; | |
height:200px; | |
} | |
</style> | |
<body> | |
<div id="source"> | |
<h1> </h1> | |
</div> | |
<div id="region"></div> | |
<div> | |
<h1> </h1> | |
</div> | |
</body> |