Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Side by Side Diff: experimental/webtry/templates/sidebar.html

Issue 688433002: rework GUI, scripts, and fiddle main for multiple simultaneous configs (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Add TODO about polymer port and global namespacing Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « experimental/webtry/templates/headercommon.html ('k') | experimental/webtry/webtry.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <section id="sidebar"> 1 <section id="sidebar">
2 <div class="panel panel-primary"> 2 <div class="panel panel-primary">
3 <div class="panel-heading"> 3 <div class="panel-heading">
4 <h3 class="panel-title"> 4 <h3 class="panel-title">
5 Options 5 Fiddle Options
6 </h3> 6 </h3>
7 </div> 7 </div>
8 <div class="panel-body"> 8 <div class="panel-body">
9 <form class="form-horizontal" role="form"> 9 <form class="form-horizontal" role="form">
10 <div class="form-group"> 10 <div class="form-group">
11 <label for="image-width" class="col-sm-4 control-label">Width</label> 11 <label for="image-width" class="col-sm-4 control-label">Width</label>
12 <div class="col-sm-8"> 12 <div class="col-sm-8">
13 <input type="number" class="form-control" id="image-width" value="{{ .Width}}"> 13 <input type="number" class="form-control" id="image-width" value="{{ .Width}}">
14 </div> 14 </div>
15 </div> 15 </div>
16 <div class="form-group"> 16 <div class="form-group">
17 <label for="image-height" class="col-sm-4 control-label">Height</label > 17 <label for="image-height" class="col-sm-4 control-label">Height</label >
18 <div class="col-sm-8"> 18 <div class="col-sm-8">
19 <input type="number" class="form-control" id="image-height" value="{ {.Height}}"> 19 <input type="number" class="form-control" id="image-height" value="{ {.Height}}">
20 </div> 20 </div>
21 </div> 21 </div>
22 </form>
23 </div>
24 </div>
25 <div class="panel panel-primary">
26 <div class="panel-heading">
27 <h3 class="panel-title">
28 Run Configuration
29 </h3>
30 </div>
31 <div class="panel-body">
32 <form id="run-configuration" class="form-horizontal" role="form">
33 <div class="checkbox">
34 <label>
35 <input id="use-raster" type="checkbox" value="" checked>
36 Raster
37 </label>
38 </div>
22 <div class="checkbox"> 39 <div class="checkbox">
23 <label> 40 <label>
24 <input id="use-gpu" type="checkbox" value=""> 41 <input id="use-gpu" type="checkbox" value="">
25 Ganesh 42 Ganesh
26 </label> 43 </label>
27 </div> 44 </div>
45 <div class="checkbox">
46 <label>
47 <input id="use-pdf" type="checkbox" value="" disabled>
48 PDF (coming soon)
49 </label>
50 </div>
28 </form> 51 </form>
29 </div> 52 </div>
30 </div> 53 </div>
31 </section> 54 </section>
OLDNEW
« no previous file with comments | « experimental/webtry/templates/headercommon.html ('k') | experimental/webtry/webtry.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698