(type)
| 253 | return cont(attributes); |
| 254 | } |
| 255 | function attribute(type) { |
| 256 | if (type == "equals") return cont(attvalue, attributes); |
| 257 | if (!Kludges.allowMissing) setStyle = "error"; |
| 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();} |