()
| 831 | } |
| 832 | |
| 833 | function state_attr_compare() { |
| 834 | if(/[=~|$^*]/.test(c)) { |
| 835 | gathered.push(c) |
| 836 | } |
| 837 | |
| 838 | if(gathered.length === 2 || c === '=') { |
| 839 | cmp = gathered.join('') |
| 840 | gathered.length = 0 |
| 841 | state = ATTR_END |
| 842 | quote = null |
| 843 | |
| 844 | return |
| 845 | } |
| 846 | } |
| 847 | |
| 848 | function state_attr_end() { |
| 849 | if(!gathered.length && !quote) { |