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

Unified Diff: experimental/webtry/templates/content.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, 2 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « experimental/webtry/scripts/fiddle_run ('k') | experimental/webtry/templates/footercommon.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/webtry/templates/content.html
diff --git a/experimental/webtry/templates/content.html b/experimental/webtry/templates/content.html
index 7e872d0848d1061ea408db4ad8b66c2038c996b7..1ac910573e66d7188c58fd2e45a1899ad239d1cc 100644
--- a/experimental/webtry/templates/content.html
+++ b/experimental/webtry/templates/content.html
@@ -51,9 +51,28 @@
<input type="text" value="" id="embed" readonly style="display:none;">
</div>
- <p>
- <img touch-action='none' class='zoom' id='img' src='{{if .Hash}}/i/{{.Hash}}.png{{end}}'/>
- </p>
+ <div id="raster-output" class="image-wrapper panel panel-primary">
+ <div class="panel-heading">
+ <h3 class="panel-title">
+ Raster Output
+ </h3>
+ </div>
+ <div class="panel-body">
+ <img touch-action='none' class='zoom' id='raster-img' onload="onLoadImage(this)" src='{{if .Hash}}/i/{{.Hash}}_raster.png{{end}}'/>
+ </div>
+ </div>
+
+ <div id="gpu-output" class="image-wrapper panel panel-primary">
+ <div class="panel-heading">
+ <h3 class="panel-title">
+ Ganesh Output
+ </h3>
+ </div>
+ <div class="panel-body">
+ <img touch-action='none' class='zoom' id='gpu-img' onload="onLoadImage(this)" src='{{if .Hash}}/i/{{.Hash}}_gpu.png{{end}}'/>
+ </div>
+ </div>
+
<p id='zoomHex'></p>
<div id="output-wrapper">
« no previous file with comments | « experimental/webtry/scripts/fiddle_run ('k') | experimental/webtry/templates/footercommon.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698