servo/tests/wpt/css-tests/css-regions-1_dev/html/regions-transforms-011.htm

54 lines
No EOL
1.8 KiB
HTML

<!DOCTYPE html>
<html><head>
<meta charset="UTF-8">
<title>CSS Regions: Transformed region where parent and child are separate named flow content nodes</title>
<link href="mailto:dalcala@adobe.com" rel="author" title="David Alcala">
<link href="mailto:mibalan@adobe.com" rel="reviewer" title="Mihai Balan">
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck"> <!-- 07-15-2013 -->
<link href="http://www.w3.org/TR/css3-regions/#the-flow-into-property" rel="help">
<link href="http://www.w3.org/TR/css3-regions/#flow-from" rel="help">
<link href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions" rel="help">
<link href="reference/regions-transforms-010-ref.htm" rel="match">
<meta content="This test checks that the region is transformed when a parent and its child are
separate named flow content nodes flowing into it." name="assert">
<style>
#named-flow-parent {
width: 100px;
height: 50px;
background-color: green;
flow-into: f;
}
#named-flow-child {
width: 100px;
height: 50px;
background-color: green;
flow-into: f;
}
#region {
width: 100px;
height: 100px;
background-color: red;
flow-from: f;
transform: translateX(-50px) rotate(90deg);
transform-origin: right bottom;
}
#failure {
position: absolute;
width: 98px;
height: 98px;
background-color: red;
left: 59px;
top: 50px;
}
</style>
</head>
<body>
<p>The test passes if you see a green square and no red.</p>
<div id="failure"></div>
<div id="named-flow-parent">
<div id="named-flow-child"></div>
</div>
<div id="region"></div>
</body></html>