[Webkit-unassigned] [Bug 71225] [chromium] when position:fixed in a separate layer it doesn't get full resolution with css transform

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Oct 31 17:35:40 PDT 2011


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





--- Comment #3 from James Robinson <jamesr at chromium.org>  2011-10-31 17:35:40 PST ---
I think your test case is the same as this:

<!DOCTYPE html>
<style>
.scaleUp {
  -webkit-transform:scale(2, 2);
  position:absolute;
  left:50px;
}
.compositedScaleUp {
  -webkit-transform:translateZ(0) scale(2,2);
  position:absolute;
  left:50px;
}
</style>
<div class="scaleUp">TEST 1</div>
<br><br>
<div class="compositedScaleUp">TEST 2</div>

which boils down to rastering at the pre-scale resolution rather than post-scale.

-- 
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