O with occluded right edge to appear also as a C Open Web Components Guides Docs Blog Toggle darkmode

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> `;

Further Reading