[Webkit-unassigned] [Bug 128181] Incorrect caret position inside iframe with -webkit-transform

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Feb 4 07:10:10 PST 2014


https://bugs.webkit.org/show_bug.cgi?id=128181





--- Comment #1 from Andreas Hartmann <andreas.hartmann at gmail.com>  2014-02-04 07:07:31 PST ---
If the transformation is applied to the textarea inside the iframe, the caret is positioned correctly, but drawn as a horizontal rectangle (it looks like the browser draws the bounding box of the caret instead of a line from the top to the bottom endpoint), see screenshot.

HTML to reproduce:

<html>
  <body>
    <iframe id="iframe"></iframe>
    <script>
      var content = '<html><body><textarea style="height: 300px; width: 600px; -webkit-transform: translate(100px, 100px) rotate(20deg)"></textarea></body></html>';
      document.getElementById('iframe').src = "data:text/html;charset=utf-8," + escape(content);
    </script>
  </body>
</html>

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list