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