Lines Matching refs:getError

115                 return $this->getError(HTML_OK_NOTSUPPORTED, $match, $action[1]);
118 return $this->getError(HTML_OK_NOTSUPPORTED, $match, $onsubmit[1]);
127 return $this->getError(HTML_OK_EXCLUDEDWINDOW, $match, "IFRAME");
131 return $this->getError(HTML_OK_EXCLUDEDWINDOW, $match, "ILAYER");
136 return $this->getError(HTML_OK_NOTSUPPORTED, $match, $matches[1], "div");
140 return $this->getError(HTML_OK_NOTSUPPORTED, $match, "javascript urls");
148 return $this->getError(HTML_OK_NOTSUPPORTED, $match, "TABLE");
165 return $this->getError(HTML_OK_NOTSUPPORTED, $match, 'FORM');
169 return $this->getError(HTML_OK_NOTSUPPORTED, $match, 'SCRIPT');
173 return $this->getError(HTML_OK_EXCLUDEDWINDOW, $match, "IFRAME");
177 return $this->getError(HTML_OK_EXCLUDEDWINDOW, $match, "ILAYER");
182 return $this->getError(HTML_OK_NOTSUPPORTED, $match, $matches[1], "div");
186 return $this->getError(HTML_OK_NOTSUPPORTED, $match, "TABLE");
190 return $this->getError(HTML_OK_NOTSUPPORTED, $match, "STYLE");
194 return $this->getError(HTML_OK_NOTSUPPORTED, $match, "javascript urls");
210 return $this->getError(HTML_OK_NOTSUPPORTED, $match, $matches[1], "form");
220 return $this->getError(HTML_OK_EXCLUDEDWINDOW, $match, $matches[1], "");
270 return $this->getError(HTML_OK_NOTSUPPORTED, $match, "location");
275 return $this->getError(HTML_OK_NOTSUPPORTED, $match, $matches[1]);
280 return $this->getError(HTML_OK_NOTSUPPORTED, $match, $matches[1]);
295 return $this->getError(HTML_OK_BADFNNAME, $match, $err);
310 return $this->getError(HTML_OK_INVALIDID, $match, $value, $div);
320 return $this->getError(HTML_OK_INVALIDID, $match, $value, $div);
345 return $this->getError(HTML_OK_BADSELECTOR, $match, $err);
361 return $this->getError(HTML_OK_BADCLASSNAME, $match, $err);
486 function getError($TYPE, $match, $problem_str, $xtra = "") function in syntax_plugin_htmlOKay