* 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)
| 147 | * an existing tag. A string in the format `"tag_attribute=`value string`"`. |
| 148 | */ |
| 149 | removeTag(attrSelector: string): void { |
| 150 | this.removeTagElement(this.getTag(attrSelector)!); |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Removes an existing `<meta>` tag element from the current HTML document. |
no test coverage detected