blob: 91294891f0c1f0b2d44e55376c0ef2215bd0bc8f [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>This tests that named flows can be painted on subpixel positions.</title>
<style>
#outer {
border: 1px solid blue;
-webkit-flow-into: flow1;
}
#inner {
margin: auto;
width: 97%;
}
#region1 {
width: 200px;
-webkit-flow-from: flow1;
}
</style>
</head>
<body>
<div id="outer">
<div id="inner">This text should to painted on the same position.</div>
</div>
<div id="region1"></div>
</body>
</html>