NEW128524
Repaint rects difference between WK1 and WK2 for fixed element with dynamic transform
https://bugs.webkit.org/show_bug.cgi?id=128524
Summary Repaint rects difference between WK1 and WK2 for fixed element with dynamic t...
Mihnea Ovidenie
Reported 2014-02-10 02:29:04 PST
Noticed a difference in text based repaints rects between WK1 and WK2 for the following html test: <html> <head> <script src="../../repaint/resources/text-based-repaint.js"></script> <style> body { margin: 0px; } #parent { position: fixed; top: 50px; left: 50px; width: 100px; height: 100px; } .transformed { -webkit-transform: scale3d(1, 1, 1); } </style> </head> <body onload="runRepaintTest()"> <div id="parent"></div> <script> function repaintTest() { document.getElementById("parent").className = "transformed"; } </script> </body> </html>
Attachments
Note You need to log in before you can comment on or make changes to this bug.