 Chromium Code Reviews
 Chromium Code Reviews Issue 976543002:
  Fix pixel snapping issue when transforming  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master
    
  
    Issue 976543002:
  Fix pixel snapping issue when transforming  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master| OLD | NEW | 
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>Fractional border</title> | |
| 
esprehn
2015/03/24 23:13:23
ditto, all this markup isn't needed.
 
qiankun
2015/03/26 11:06:25
Done.
 | |
| 5 <style> | |
| 6 div { | |
| 7 transform:scale(1); | |
| 8 border: solid 1px #000; | |
| 9 position: absolute; | |
| 10 top: 127.223px; | |
| 11 left: 80.334px; | |
| 12 width: 360.4px; | |
| 13 height: 170.3px; | |
| 14 overflow: hidden; | |
| 15 } | |
| 16 </style> | |
| 17 </head> | |
| 18 <body> | |
| 19 <div></div> | |
| 20 </body> | |
| 21 </html> | |
| OLD | NEW |