blob: bea1e366f5334e256ca3fc03cc366bb5fa4d2fe2 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
#region {
-webkit-flow-from: flow;
}
#contentNode {
-webkit-flow-into: flow2;
width: 100px;
height: 100px;
background-color: red;
}
#redirectRegion {
-webkit-flow-from: flow2;
width: 100px;
height: 100px;
background-color: green;
}
</style>
</head>
<body>
<p>Test that a child of a region cannot be displayed in another region.</p>
<p>On success you should see a green rectangle below and no red.</p>
<div id="region">
<div>
<div id="contentNode"></div>
</div>
</div>
<div id="redirectRegion"></div>
</body>
</html>