Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.08 KB

File metadata and controls

38 lines (26 loc) · 1.08 KB

ember/template-require-iframe-title

💼 This rule is enabled in the 📋 template-lint-migration config.

<iframe>

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

This rule takes no arguments.

Examples

This rule allows the following:

<template>
  <iframe title='This is a unique title' />
  <iframe title={{someValue}} />
</template>

This rule forbids the following:

<template>
  <iframe />
  <iframe title='' />
</template>

References