why window.loadFirebugConsole() is being called on

2019-08-04 16:37发布

问题:

An iframe is being created with the below line, whenever i am including dojo/enhancedgrid in my page:

<iframe src="javascript:'
  <html>
    <head>
      <script>

        if("loadFirebugConsole" in window){
          window.loadFirebugConsole();
        }
        </script>
      </head>
    <body>
  </body>
  </html>'
">

Can anyone tell why it is created and how can i removed it? Thanks in advance for any suggestion