<!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> |