RequestHelperHasCSSBleedRisk Method |
Gets whether or not there's a potential for CSS bleedthrough from the current request to the containing page.
IE9 has a bug that allows CSS (specifically media queries) in an iframe to bleed through to the containing page.
The workaround to this is to make sure that IE considers a particular CSS file referenced in the containing page
to be distinct from the CSS file referenced in the iframe. The easiest way to do this is to add some query
parameter to the CSS file URL in the iframe making IE view them as distinct.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static bool HasCSSBleedRisk()
Public Shared Function HasCSSBleedRisk As Boolean
Return Value
Type:
BooleanTrue if bleedthrough may be possible.
See Also