|
| 1 | +<!-- |
| 2 | + Copyright 2016 Google Inc. |
| 3 | +
|
| 4 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + you may not use this file except in compliance with the License. |
| 6 | + You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | + Unless required by applicable law or agreed to in writing, software |
| 11 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + See the License for the specific language governing permissions and |
| 14 | + limitations under the License. |
| 15 | +--> |
| 16 | + |
| 17 | +<!-- referenced in: https://developers.google.com/web/tools/chrome-devtools/evaluate-performance/ --> |
| 18 | + |
| 19 | +<!doctype html> |
| 20 | +<html> |
| 21 | + |
| 22 | +<head> |
| 23 | + <link rel="shortcut icon" href="favicon-96x96.png" /> |
| 24 | + <title>Janky Animation</title> |
| 25 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 26 | + <link rel="stylesheet" type="text/css" href="styles.css" /> |
| 27 | + |
| 28 | + <script src="app.js"></script> |
| 29 | + <script src="../../../../tracing/build/bundles/bundle.tracing.min.js"></script> |
| 30 | + <script src="../../../build/bundles/replay.min.js"></script> |
| 31 | + <script type="text/javascript"> |
| 32 | + Sentry.init({ |
| 33 | + dsn: "https://[email protected]/5429213", |
| 34 | + replaysSessionSampleRate: 1.0, |
| 35 | + replaysOnErrorSampleRate: 1.0, |
| 36 | + integrations: [ |
| 37 | + new Sentry.Integrations.Replay({}), |
| 38 | + ], |
| 39 | + }); |
| 40 | + </script> |
| 41 | +</head> |
| 42 | + |
| 43 | +<body> |
| 44 | + <img class="proto mover" src="logo-1024px.png" /> |
| 45 | + <div class="controls"> |
| 46 | + <button class="add"></button> |
| 47 | + <button class="subtract" disabled></button> |
| 48 | + <button class="stop">Stop</button> |
| 49 | + <button class="optimize">Un-Optimize</button> |
| 50 | + <a href="https://developers.google.com/web/tools/chrome-devtools/evaluate-performance/" target="_blank"> |
| 51 | + <button class="optimize">Help</button> |
| 52 | + </a> |
| 53 | + </div> |
| 54 | +</body> |
| 55 | + |
| 56 | +</html> |
0 commit comments