@html-eslint/require-frame-title
title
attribute in <frame>
and <iframe>
Require Rule Details
This rule enforces usr of title
attribute in <frame>
and <iframe>
.
Examples of incorrect code for this rule:
<iframe src="..."></iframe> <iframe src="..." title=""></iframe>
Examples of correct code for this rule:
<iframe src="..." title="frame title"></iframe>