/
githubmirror
/
amphtml
Обзор
Документация
Войти
/
githubmirror
/
amphtml
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
validator/testdata/amp4ads_feature_tests/noscript.html
27 строк
655 B
honeybadgerdontcare
Validator rollup 20210819 (#35748)
20 авг 2021, 21:08
Не верифицирован
20 авг 2021, 21:08
15f658d
Код
Авторство
О чём код?
<!-- Test Description: This tests that <noscript> tags are disallowed in A4A, which differs from AMP. --> <!doctype html> <html ⚡4ads> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,minimum-scale=1"> <style amp4ads-boilerplate>body{visibility:hidden}</style> <script async src="https://cdn.ampproject.org/amp4ads-v0.js"></script> </head> <body> <!-- Invalid --> <noscript></noscript> <!-- Invalid --> <img src="https://example.com/"> <!-- Invalid --> <noscript> <img src="https://example.com/"> </noscript> <noscript> <video></video> <audio></audio> </noscript> </body> </html>