* [uitest] add ui test coverage report page.

This commit is contained in:
liyang
2025-05-22 13:56:41 +08:00
committed by 李阳
parent ba86f30f9a
commit dfd01dc522
+17
View File
@@ -117,3 +117,20 @@ function renderColorByCoveragePercent()
{
$(this).css('color', 'orange');
}
else
{
$(this).css('color', 'green');
}
}
});
}
function implementExpand()
{
$("tr[name$='-child']").hide();
$("tr[name$='-parent']").click(function()
{
$(this).nextUntil("tr[name$='-parent']").slideToggle('fast');
});
}
</script>