mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The way the benchmarking code is used and wired up in g3 is rather magical. This change makes it easier to sync into g3 by using conditional blocks, and also consistnetly using a single bundle name (like it was before— we regressed here as part of the ESM initial changes- but now with clear comments, it's more future-proof..) PR Close #48521
21 lines
535 B
HTML
21 lines
535 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Prevent the browser from requesting any favicon. -->
|
|
<link rel="icon" href="data:," />
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Change Detection Benchmark</h1>
|
|
<div id="rendererMode">...</div>
|
|
|
|
<benchmark-root>Loading...</benchmark-root>
|
|
|
|
<!-- BEGIN-EXTERNAL -->
|
|
<script src="/angular/packages/zone.js/bundles/zone.umd.js"></script>
|
|
<!-- END-EXTERNAL -->
|
|
|
|
<!-- Needs to be named `app_bundle` for sync into Google. -->
|
|
<script src="/app_bundle.js"></script>
|
|
</body>
|
|
</html>
|