Bug 128524

Summary: Repaint rects difference between WK1 and WK2 for fixed element with dynamic transform
Product: WebKit Reporter: Mihnea Ovidenie <mihnea>
Component: WebCore Misc.Assignee: Nobody <webkit-unassigned>
Status: NEW ---    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   

Description Mihnea Ovidenie 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>