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

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

Issue 292433002: Move zooming into its own component, imported via HTML Imports. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 7 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Skia WebTry</title> 4 <title>Skia WebTry</title>
5 <meta charset='utf-8' /> 5 {{template "headercommon.html" .}}
6 <script src="/res/js/pointerevents.min.js" type="text/javascript" charset="u tf-8"></script> 6 <link rel='import' type='text/html' href='/res/imp/zoom.html'>
7 <link rel="stylesheet" href="/res/css/webtry.css" type="text/css" media="scr een">
8 <link rel="stylesheet" href="/res/css/cm/codemirror.css" type="text/css" med ia="screen">
9 </head> 7 </head>
10 <body> 8 <body>
11 {{template "titlebar.html" .}} 9 {{template "titlebar.html" .}}
12 {{template "content.html" .}} 10 {{template "content.html" .}}
13 11
14 <script type='text/javascript' charset='utf-8'> 12 <script type='text/javascript'>
15 // Not running in a workspace. 13 // Not running in a workspace.
16 var workspaceName = ""; 14 var workspaceName = '';
17 </script> 15 </script>
18 <script src="/res/js/webtry.js" type="text/javascript" charset="utf-8"></scrip t> 16 {{template "footercommon.html" .}}
19 </body> 17 </body>
20 </html> 18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698