/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
modules/benchmarks/src/hydration/baseline/index.html
43 строки
1 KB
Matthieu Riegler
build: enable angular formatting on all html files
08 дек 2025, 21:19
08 дек 2025, 21:19
9d1d742
Код
Авторство
О чём код?
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <!-- Prevent the browser from requesting any favicon. --> <link rel="icon" href="data:," /> </head> <body> <!--nghm--> <h2>Params</h2> <form> Cols: <input type="number" id="cols" name="cols" value="" /> <br /> Rows: <input type="number" id="rows" name="rows" value="" /> <br /> <button>Apply</button> </form> <h2>Hydration Benchmark (baseline)</h2> <p> <button id="prepare">prepare</button> <button id="createDom">createDom</button> <button id="updateDom">updateDom</button> <button id="createDomProfile">profile createDom</button> <button id="updateDomProfile">profile updateDom</button> </p> <div> <app id="root"></app> </div> <!-- BEGIN-EXTERNAL --> <script src="/_main/modules/node_modules/zone.js/bundles/zone.umd.js"></script> <!-- END-EXTERNAL --> <div id="table"></div> <!-- Needs to be named `app_bundle` for sync into Google. --> <script src="/app_bundle.js"></script> </body> </html>