Hi Pedro,

Thanks for the reply.

In source code this revision number is mentioned  : version:"Firebug
Lite 1.3.0",revision:"$Revision: 6859 $"
I am not using any external css.After your reply I started playing
with the page and found out that this particular error occurs when I
include google visual API [ first script file in html code ]for chart.
follow is the html code which give you said error on IE 8.0

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
<html>
  <head>
    <script type="text/javascript" src="http://www.google.com/jsapi";></
script>                                                                  //
if you remove this line, there is no error
    <script type="text/javascript" src="http://getfirebug.com/firebug-
lite.js"></script>
    <script src="http://code.jquery.com/jquery-1.4.2.min.js";
language="javascript" type="text/javascript"></script>
    <script type="text/javascript">
      var data;
      google.load("visualization", "1", {packages:["linechart"]});
      google.load('visualization', '1', {packages:['table']});
      google.setOnLoadCallback(drawChart);

      //google.setOnLoadCallback(drawTable);

      function drawChart() {

        var ccdata = getCData();
        data = ccdata;
        var chart = new
google.visualization.LineChart(document.getElementById('chart_div'));

        var options = new Object();
                options.width = 500;
                options.height = 250;
                options.legend = 'none';
                options.colors = ['#ff7f00', '#339999', '#cc9966'];
                options.lineWidth=3;
                options.pointSize = 5;

        chart.draw(ccdata, options);

        var table = new
google.visualization.Table(document.getElementById('table_div'));
        table.draw(ccdata, {showRowNumber: true});

 }
        function getCData(){
                data = new google.visualization.DataTable();

        data.addColumn('string', 'Log');
        data.addColumn('number', 'Req');
        data.addColumn('number', 'Ser');
        data.addColumn('number', 'Loa');

        data.addRows(5);


        data.setValue(0, 0, '1 amn');
        data.setValue(1, 0, '2 am');
        data.setValue(2, 0, '3 am');
        data.setValue(3, 0, '4 am');
        data.setValue(4, 0, '5 am');

        data.setValue(0, 1, 1000); // for req line
        data.setValue(1, 1, 1170);
        data.setValue(2, 1, 860);
        data.setValue(3, 1, 1030);
        data.setValue(4, 1, 1030);

        data.setValue(0, 2, 400); // for served line
        data.setValue(1, 2, 460);
        data.setValue(2, 2, 580);
        data.setValue(3, 2, 540);
        data.setValue(4, 2, 540);

        data.setValue(0, 3, 300); // for Loaded line
        data.setValue(1, 3, 200);
        data.setValue(2, 3, 400);
        data.setValue(3, 3, 59);
        data.setValue(4, 3, 600);

        return data;
        }
</script>
</head>
<body>
        <div id="chartselector" class="chartselector"
style="position:relative;left:25px">
                <form id='fform'>
                        <input type="checkbox" value="1" checked 
onclick="call_me()"/>Req
                        <input type="checkbox" value="2" checked 
onclick="call_me()"/>Ser
                        <input type="checkbox" value="3" checked 
onclick="call_me()"/>Loa
                </form>
        </div>
        <div id="chart_div" style="top:50px;position:absolute;"></div>
</body>
</html>
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Thanks,
Arya

On Jun 29, 10:42 pm, Pedro Simonetti Garcia <[email protected]>
wrote:
> Hi Arya,
>
> Thanks for reporting this bug.
>
> Could you please point us to a URL which reproduces this
> error or create a small HTML file so we can investigate the
> problem?
>
> http://code.google.com/p/fbug/issues/list
>
> Testing here in my machine I could not reproduce this error.
>
> Also, please inform us the revision number of the version
> you are using. Try searching for "revision" in the source
> code. The latest beta version on getfirebug.com has
> the revision 7125.
>
> If your revision number is the same, this may be a problem
> with external stylesheets. Are you using external stylesheets?
>
> regards,
>
> Pedro Simonetti.
>
> 2010/6/29 arya <[email protected]>:
>
>
>
> > Hi All,
>
> > My IE version is 8.0, I tried to use firebug lite and used following
> > urls one by one
>
> > <script type="text/javascript" src="https://getfirebug.com/firebug-
> > lite.js"></script>
> > <script type="text/javascript" src="https://getfirebug.com/firebug-
> > lite-beta.js"></script>
>
> > but I get following error message, both time
>
> > ==================================================================
> > Webpage error details
> > User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/
> > 4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR
> > 3.0.30729; Media Center PC 6.0; InfoPath.2)
> > Timestamp: Tue, 29 Jun 2010 09:12:39 UTC
>
> > Message: Access is denied.
>
> > Line: 21896
> > Char: 5
> > Code: 0
> > URI:https://getfirebug.com/firebug-lite-beta.js
> > ====================================================================
>
> > Please help me sovle this error.
>
> > Thanks
> > Arya
>
> > --
> > You received this message because you are subscribed to the Google Groups 
> > "Firebug" group.
> > To post to this group, send email to [email protected].
> > To unsubscribe from this group, send email to 
> > [email protected].
> > For more options, visit this group 
> > athttp://groups.google.com/group/firebug?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Firebug" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/firebug?hl=en.

Reply via email to