(name)
| 1036 | } |
| 1037 | |
| 1038 | removeAttribute(name) { |
| 1039 | if (typeof name !== 'string') return false |
| 1040 | |
| 1041 | return this.$_attrs.remove(name) |
| 1042 | } |
| 1043 | |
| 1044 | setAttributeNS(namespace, name, value) { |
| 1045 | // 不支持 namespace,使用 setAttribute 来兼容 |
no test coverage detected