added tests
This commit is contained in:
7
dvm/tools/tester/trunk/main/report.js
Normal file
7
dvm/tools/tester/trunk/main/report.js
Normal file
@@ -0,0 +1,7 @@
|
||||
function toggleElem(id) {
|
||||
var e = document.getElementById(id);
|
||||
if(e.style.display == 'block')
|
||||
e.style.display = 'none';
|
||||
else
|
||||
e.style.display = 'block';
|
||||
}
|
||||
Reference in New Issue
Block a user