(type)
| 258 | return (type == "endTag" || type == "selfcloseTag") ? pass() : cont(); |
| 259 | } |
| 260 | function attvalue(type) { |
| 261 | if (type == "string") return cont(attvaluemaybe); |
| 262 | if (type == "word" && Kludges.allowUnquoted) {setStyle = "string"; return cont();} |
| 263 | setStyle = "error"; |
| 264 | return (type == "endTag" || type == "selfCloseTag") ? pass() : cont(); |
| 265 | } |
| 266 | function attvaluemaybe(type) { |
| 267 | if (type == "string") return cont(attvaluemaybe); |
| 268 | else return pass(); |