mirror of
https://github.com/Polymer/polymer.git
synced 2026-08-19 01:14:44 -05:00
28 lines
603 B
HTML
28 lines
603 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<script src="../../node_modules/@webcomponents/webcomponentsjs/webcomponents-lite.js"></script>
|
|
<script src="../../../../perf-tester/perf-tester.js"></script>
|
|
<script type="module" src="../../polymer-legacy.js"></script>
|
|
<style>
|
|
summary {
|
|
font-family: sans-serif;
|
|
font-size: 1.5em;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
<summary>Perf is go.</summary>
|
|
<perf-tester runs="25"></perf-tester>
|
|
|
|
<script type="module">
|
|
document.querySelector('perf-tester').tests = [
|
|
'binding-expressions.html'
|
|
];
|
|
</script>
|
|
|
|
</body>
|