blob: 07c8fcdee034989ed4d7bc9efa4cdac6396689a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!--
Copyright (c) 2013 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<template id="picture-debugger-template">
<left-panel>
<picture-info>
<div>
<span class='title'>Skia Picture</span>
<span class='size'></span>
</div>
<div>
<input class='filename' type='text' value='skpicture.skp' />
<button class='export'>Export</button>
</div>
</picture-info>
</left-panel>
<right-panel>
<picture-ops-chart-view></picture-ops-chart-view>
<raster-area><canvas></canvas></raster-area>
</right-panel>
</template>
|