/
githubmirror
/
amphtml
Обзор
Документация
Войти
/
githubmirror
/
amphtml
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
validator/js/webui/index.html
42 строки
2 KB
honeybadgerdontcare
remove notices from validator/js/... (#35734)
19 авг 2021, 01:41
Не верифицирован
19 авг 2021, 01:41
7a3474d
Код
Авторство
О чём код?
<!doctype html> <head> <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes"> <title>The AMP Validator</title> <meta charset="utf-8"> <link rel="shortcut icon" href="/amp_favicon.png"> <script src="webcomponents.js/webcomponents.min.js"></script> <link rel="import" href="@polymer/paper-styles/demo-pages.html"> <link rel="import" href="@polymer/webui-mainpage/webui-mainpage.html"> <link rel="import" href="@polymer/polymer/polymer.html"> <link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/nmoffdblmcmgeicmolmhobpoocbbmknc"> <script src="webui.js"></script> <script src="https://cdn.ampproject.org/v0/validator_wasm.js"></script> <style is="custom-style"> .ampproject-message { background-color: #FFF9C4; } html, body { height: 100%; margin: 0px; padding: 5px !important; } </style> <style scope="iron-icon"> .ampproject-warning { color: #FF9800; } .ampproject-error { color: #F44336; } </style> <meta name="description" content="AMP HTML Project Web Validator. Tests AMP Documents for valid markup."> </head> <body unresolved> <webui-mainpage></webui-mainpage> <script> if (location.href.match(/^https:\/\/validator.amp.dev\/.*/)) { (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-79737099-1', 'none'); ga('send', 'pageview'); } </script> </body> </html>