Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 961 Bytes

File metadata and controls

36 lines (25 loc) · 961 Bytes

ember/template-require-iframe-title

<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