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

Unified Diff: packages/dart_style/web/index.html

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 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 | « packages/dart_style/test/whitespace/while.stmt ('k') | packages/dart_style/web/main.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/dart_style/web/index.html
diff --git a/packages/dart_style/web/index.html b/packages/dart_style/web/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..f5ece4cd24863e75439c480454314a34525233d3
--- /dev/null
+++ b/packages/dart_style/web/index.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>Dart Style Sandbox</title>
+ <link rel="stylesheet" href="style.css">
+ </head>
+ <body>
+ <h2>Before</h2>
+ <div class="code-area">
+ <textarea id="before" cols="100" rows="10">// Enter code here:
+ main () {
+print("Hello, world!");}</textarea><br/>
+ </div>
+ <label for="width">Page Width</label>
+ <input type="range" id="width" min="10" value="80" max="100" step="1" style="width: 400px;">
+ <output for="width" id="width-output">80</output>
+ <h2>After</h2>
+ <div class="code-area">
+ <pre class="column-marker">
+ | 80 columns
+ </pre>
+ <textarea id="after" cols="100" rows="30" readonly></textarea>
+ </div>
+ <script type="application/dart" src="main.dart"></script>
+ <script src="packages/browser/dart.js"></script>
+ </body>
+</html>
« no previous file with comments | « packages/dart_style/test/whitespace/while.stmt ('k') | packages/dart_style/web/main.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698