Mozilla/mozilla/webtools/litmus/js/ViewTestcase.js
ccooper%deadsquid.com 751526c5f7 b=394238
- use correct field id


git-svn-id: svn://10.0.0.236/trunk@236861 18797224-902f-48f8-a5cc-f745e15eee43
2007-09-28 17:40:02 +00:00

17 lines
385 B
JavaScript

function checkCategoryForm(f) {
return verifySelected(f.product_id, 'Product');
}
function checkIDForm(f) {
return checkString(f.id, 'Testcase ID #');
}
function checkFulltextForm(f) {
return checkString(f.text_snippet, 'String to match');
}
function checkRecentForm(f) {
return checkRadio(f.recently, 'Added or Changed') &&
checkString(f.num_days, '# of days');
}