Change record status: 
Project: 
Introduced in branch: 
10.1.x
Introduced in version: 
10.1.0
Description: 

A render element for iframe has been added.

Previously

$build['video'] = [
    '#type' => 'html_tag',
    '#tag' => 'iframe',
    '#attributes' => [
        'src' => 'https://example.com/video.webm',
        'allow' => 'fullscreen',
        'width' => 420,
        'height' => 315,
        'loading' => 'eager',
        'class' => ['foo', 'bar'],
    ],
];

Now

$build['video'] = [
    '#type' => 'iframe',
    '#src' => 'https://example.com/video.webm',
    '#allow' => 'fullscreen',
    '#width' => 420,
    '#height' => 315,
    '#loading' => 'eager',
    '#attributes' => [
        'class' => ['foo', 'bar'],
    ],
];
Impacts: 
Module developers
Themers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done