<html> <head> <style> div { position: fixed; border: red solid 0.5px; width: 20px; height: 20px; left: 0.1px; top: 0px; } </style> </head> <body> <div id=foo></div> <script> pos = 0.3; function move() { document.getElementById("foo").style.left = pos; } setTimeout(move,500); </script> </body> </html>
Created attachment 225730 [details] test
Created attachment 225734 [details] Patch
Comment on attachment 225734 [details] Patch Clearing flags on attachment: 225734 Committed r165050: <http://trac.webkit.org/changeset/165050>
All reviewed patches have been landed. Closing bug.