()
| 234 | |
| 235 | it('should sanitize the content when `nextSibling` or `firstChild` were clobbered', () => { |
| 236 | const nextSibling = () => |
| 237 | sanitizeHtml(defaultDoc, '<input name="nextSibling" form="a">A<form id="a"></form>'); |
| 238 | const firstChild = () => |
| 239 | sanitizeHtml(defaultDoc, '<object form="a" id="firstChild"></object>B<form id="a"></form>'); |
| 240 |
no test coverage detected
searching dependent graphs…