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

Side by Side Diff: components/dom_distiller/content/resources/dom_distiller_viewer.html

Issue 443343002: [dom_distiller] Fix viewer to use Open Sans webfont. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 Copyright 2014 The Chromium Authors. All rights reserved. 3 Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <html> 7 <html>
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scal e=1,user-scalable=no"> 10 <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scal e=1,user-scalable=no">
11 <title>$1</title> 11 <title>$1</title>
12 <link rel="stylesheet" href="/$2"> 12 <link rel="stylesheet" href="/$2">
13 <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
13 <script src="/$3"></script> 14 <script src="/$3"></script>
14 </head> 15 </head>
15 <body class="$4"> 16 <body class="$4">
16 <div id="mainContent"> 17 <div id="mainContent">
17 <article> 18 <article>
18 <header> 19 <header>
19 <h1>$1</h1> 20 <h1>$1</h1>
20 </header> 21 </header>
21 <div id="content">$5</div> 22 <div id="content">$5</div>
22 </article> 23 </article>
23 </div> 24 </div>
24 <div id="loadingIndicator" class="$6">$7</div> 25 <div id="loadingIndicator" class="$6">$7</div>
25 <div id="showOriginal"> 26 <div id="showOriginal">
26 <a href="$8">$9</a> 27 <a href="$8">$9</a>
27 </div> 28 </div>
28 </body> 29 </body>
29 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698