* Removes an existing ` ` tag element from the current HTML document. * @param attrSelector A tag attribute and value to match against, to identify * an existing tag. A string in the format `"tag_attribute=`value string`"`.
(attrSelector: string)
| 139 | * an existing tag. A string in the format `"tag_attribute=`value string`"`. |
| 140 | */ |
| 141 | removeTag(attrSelector: string): void { |
| 142 | this.removeTagElement(this.getTag(attrSelector)!); |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * Removes an existing `<meta>` tag element from the current HTML document. |
no test coverage detected