Bug ID 770385: Fingerprint iframe visible in page

Last Modified: Jul 12, 2023

Affected Product(s):
BIG-IP FPS(all modules)

Fixed In:
15.1.0

Opened: Apr 08, 2019

Severity: 3-Major

Symptoms

border of the iFrame is visible at the bottom of the page

Impact

iFrame takes space in the DOM

Conditions

iFrame was set to "none" to make it invisible we need to change it to display: none

Workaround

BLFN: function(c){ var uAgent = window.navigator.userAgent.toLowerCase(); if(uAgent.indexOf('chrome') !== -1){ C.A.B.P = false; } (function hideIFrame() { try { var cssString = "iframe[src *= DkKH4pReUF2dxMQdi] { display: none; }"; var style = document.createElement('style'); style.type = 'text/css'; if (style.styleSheet) { style.styleSheet.cssText = cssString; } else { style.appendChild(document.createTextNode(cssString)); } if (document.getElementsByTagName('head')[0]) { document.getElementsByTagName('head')[0].appendChild(style); } else { setTimeout(hideIFrame, 200); } } catch (er) {} })(); }

Fix Information

N/A

Behavior Change

Guides & references

K10134038: F5 Bug Tracker Filter Names and Tips