havapa / testability-explorer

Automatically exported from code.google.com/p/testability-explorer
Apache License 2.0
0 stars 0 forks source link

Html output - [+] expanding not working in IE7 #6

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Click on the [+] signs in html report.

What is the expected output? What do you see instead?
Nothing happens. Info about JavaScript error shows i IE status bar.
Error:
'firstChild'is empty or is not an object
(this is my translation from Polish)

What version of the product are you using? On what operating system?
version 1.3 Windows XP

Please provide any additional information below.

A change in method "clickHandler" in 
"src/com/google/test/metric/report/report.js" is needed.
instead of:
"var element = event.target;"
you can code:
"var element = event.target != undefined? event.target: event.srcElement;"

Original issue reported on code.google.com by gslowiko...@gmail.com on 2 Mar 2009 at 2:11

GoogleCodeExporter commented 8 years ago
Thanks for the report - the [+] link is no longer in trunk. The next release 
will
have a very new HTML report, and I'll test it on IE 7 before releasing :)

Original comment by aeagle22206 on 18 Mar 2009 at 9:33