| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <!-- | 3 <!-- |
| 4 Copyright (c) 2014 The Chromium Authors. All rights reserved. | 4 Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 <head> | 8 <head> |
| 9 <title>Trace-Viewer Tests: loading...</title> | 9 <title>Trace-Viewer Tests: loading...</title> |
| 10 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | 10 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| 11 | 11 |
| 12 <link rel="shortcut icon" href="data:image/x-icon;base64," | 12 <link rel="shortcut icon" href="data:image/x-icon;base64," |
| 13 type="image/x-icon"> | 13 type="image/x-icon"> |
| 14 | 14 |
| 15 <script src="/components/webcomponentsjs/webcomponents-lite.js"></script> | 15 <link rel="import" href="/tracing/ui/base/base.html" data-suppress-import-orde
r> |
| 16 <script> | |
| 17 'use strict'; | |
| 18 | |
| 19 // Force Polymer into native shadowDom mode | |
| 20 window.Polymer = window.Polymer || {}; | |
| 21 window.Polymer.dom = 'shadow'; | |
| 22 </script> | |
| 23 <link rel="import" href="/components/polymer/polymer.html"> | |
| 24 <link rel="import" href="/tracing/base/unittest/interactive_test_runner.html"> | 16 <link rel="import" href="/tracing/base/unittest/interactive_test_runner.html"> |
| 25 <style> | 17 <style> |
| 26 html, body { | 18 html, body { |
| 27 box-sizing: border-box; | 19 box-sizing: border-box; |
| 28 width: 100%; | 20 width: 100%; |
| 29 height: 100%; | 21 height: 100%; |
| 30 overflow: hidden; | 22 overflow: hidden; |
| 31 margin: 0px; | 23 margin: 0px; |
| 32 } | 24 } |
| 33 </style> | 25 </style> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 50 {linkPath: '/tracing_examples/skia_debugger.html', | 42 {linkPath: '/tracing_examples/skia_debugger.html', |
| 51 title: 'Skia Debugger'}, | 43 title: 'Skia Debugger'}, |
| 52 {linkPath: '/tracing_examples/trace_viewer.html', | 44 {linkPath: '/tracing_examples/trace_viewer.html', |
| 53 title: 'Trace File Viewer'} | 45 title: 'Trace File Viewer'} |
| 54 ] | 46 ] |
| 55 }); | 47 }); |
| 56 }); | 48 }); |
| 57 </script> | 49 </script> |
| 58 </body> | 50 </body> |
| 59 </html> | 51 </html> |
| OLD | NEW |