[Webkit-unassigned] [Bug 74912] New: Glitches with requestFullScreen() and CSS 3D transforms
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Dec 19 21:51:59 PST 2011
https://bugs.webkit.org/show_bug.cgi?id=74912
Summary: Glitches with requestFullScreen() and CSS 3D
transforms
Product: WebKit
Version: 528+ (Nightly build)
Platform: Unspecified
OS/Version: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: CSS
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: jeremya at chromium.org
CC: fishd at chromium.org, jer.noble at apple.com,
koz at chromium.org
When fullscreening the element that has the -webkit-transform style applied, the whole page is visible instead of just that element.
<style>
#fs-target {
-webkit-transform: translateZ(-600px) rotateY(0deg) translateZ(600px);
}
</style>
<p>outside of target</p>
<div id="fs-target">fullscreen target</div>
<button id="snippet-fs">go fullscreen</button>
<script>
document.getElementById('snippet-fs').onclick = function(e) {
document.querySelector('#fs-target').webkitRequestFullScreen()
};
</script>
--
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