EsLint Plugin Lit A11y: iframe-title
<iframe>
elements must have a unique title property to indicate its content to the user.
Rule Details
Examples of incorrect code for this rule:
html` <iframe src="${foo}"></iframe> `;
Examples of correct code for this rule:
html` <iframe title="Foo" src="${foo}"></iframe> `;