{
ServletRequest request = pageContext.getRequest();
// DavidQ - Breaking out individual variables to make debugging easier.
// DavidQ - Begin
HTMLScanner htmlScanner = (HTMLScanner) request.getAttribute(HTML_SCANNER_ATTR);
ExecContext context = (ExecContext) request.getAttribute(EXEC_CONTEXT_ATTR);
this.testResult = htmlScanner.getCondition(this.getTagHandler(), this.getConditionMethod(), context, this.parameterList);
// DavidQ - End
return EVAL_BODY_INCLUDE;
}