Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 469 Bytes

iframe-has-title.md

File metadata and controls

29 lines (20 loc) · 469 Bytes

iframe-has-title

<iframe> elements must have a unique title property to indicate its content to the user.

🔧 Options

This rule takes no arguments.

✔ Succeed

<template>
  <iframe title="This is a unique title" />
  <iframe :title="uniqueTitle" />
</template>

❌ Fail

<template>
  <iframe />
  <iframe title="" />
</template>

📚 Resources