<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
.transformed { -webkit-transform: scale3d(1, 1, 1); } | |
#green { position: absolute; top: 150px; left: 150px; width: 50px; height: 50px; background-color: green; } | |
</style> | |
</head> | |
<body> | |
<p>Test that an absolutely positioned transformed element inside a named flow is displayed in the right place when its coordinates are updated.</p> | |
<p>On success you should see a green rectangle and no red.</p> | |
<div id="green" class="transformed"></div> | |
</body> | |
</html> |