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

Unified Diff: experimental/webtry/templates/index.html

Issue 236193011: Add /recent (Closed) Base URL: https://skia.googlesource.com/skia.git@all
Patch Set: stray print Created 6 years, 8 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
Index: experimental/webtry/templates/index.html
diff --git a/experimental/webtry/templates/index.html b/experimental/webtry/templates/index.html
index 3e0bd4243259f922d30ebef9704ea40fe4d33a39..d2ba8592cb08743278868ab1094c82bb15a75a45 100644
--- a/experimental/webtry/templates/index.html
+++ b/experimental/webtry/templates/index.html
@@ -3,25 +3,15 @@
<head>
<title>Skia WebTry</title>
<meta charset='utf-8' />
- <style type="text/css" media="screen">
- .waiting, .waiting * {
- cursor: wait;
- }
- textarea {
- margin-left: 0;
- border: solid 1px #ccc;
- color: green;
- }
- pre, code {
- padding: 0;
- color: green;
- }
- #output {
- color: #333;
- }
- </style>
+ <link rel="stylesheet" href="/css/" type="text/css" media="screen">
</head>
<body>
+ <section id=title>
+ <a href="/">Home</a>
+ <a href="/recent">Recent</a>
+ <a href="https://github.com/google/skia/tree/master/experimental/webtry">Code</a>
+ </section>
+ <section id=content>
<pre><code>#include "SkCanvas.h"
void draw(SkCanvas* canvas) {
@@ -36,6 +26,7 @@ void draw(SkCanvas* canvas) {
<pre><code id='output'></code></pre>
+ </section>
<script type='text/javascript' charset='utf-8'>
var run = document.getElementById('run');
var code = document.getElementById('code');

Powered by Google App Engine
This is Rietveld 408576698