Bug 128524 - Repaint rects difference between WK1 and WK2 for fixed element with dynamic transform
Summary: Repaint rects difference between WK1 and WK2 for fixed element with dynamic t...
Status: NEW
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebCore Misc. (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-02-10 02:29 PST by Mihnea Ovidenie
Modified: 2014-02-10 02:29 PST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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>