1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/style/full-screen-override.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,23 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 + 1.9 +*|*:-moz-full-screen-ancestor { 1.10 + /* Ancestors of a full-screen element should not induce stacking contexts 1.11 + that would prevent the full-screen element from being on top. */ 1.12 + z-index: auto; 1.13 + /* Ancestors of a full-screen element should not be partially transparent, 1.14 + since that would apply to the full-screen element and make the page visible 1.15 + behind it. It would also create a pseudo-stacking-context that would let content 1.16 + draw on top of the full-screen element. */ 1.17 + opacity: 1; 1.18 + /* Ancestors of a full-screen element should not apply SVG masking, clipping, or 1.19 + filtering, since that would affect the full-screen element and create a pseudo- 1.20 + stacking context. */ 1.21 + mask: none; 1.22 + clip: auto; 1.23 + filter: none; 1.24 + -moz-transform: none; 1.25 +} 1.26 +