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

Side by Side Diff: components/dom_distiller/core/html/dom_distiller_viewer.html

Issue 1060623002: Adds support for dynamically setting the title (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 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 unified diff | Download patch
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 $2 12 $2
13 <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet ' type='text/css'> 13 <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet ' type='text/css'>
14 </head> 14 </head>
15 <body dir="$8" class="$4"> 15 <body dir="$8" class="$4">
16 <div class="contentWrap"> 16 <div class="contentWrap">
17 <div id="mainContent"> 17 <div id="mainContent">
18 <article> 18 <article>
19 <header> 19 <header id="articleHeader">
20 <h1>$1</h1> 20 <div id="titleCollapse">
21 <div class="verticalCenterOuter">
22 <div class="verticalCenterInner">
23 <h1 id="titleHolder">$1</h1>
24 </div>
25 </div>
26 </div>
21 </header> 27 </header>
22 <div id="content">$9</div> 28 <div id="content">$9</div>
23 </article> 29 </article>
24 </div> 30 </div>
25 <div id="loadingIndicator" class="$5"> 31 <div id="loadingIndicator" class="$5">
26 <div id="loader"> 32 <div id="loader">
27 <div class="circle initial"> 33 <div class="circle initial">
28 <span class="mask"> 34 <span class="mask">
29 <span class="mover"></span> 35 <span class="mover"></span>
30 </span> 36 </span>
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 <div class="feedbackButtonWrap"> 91 <div class="feedbackButtonWrap">
86 <a class="feedbackButton" id="feedbackNo"></a> 92 <a class="feedbackButton" id="feedbackNo"></a>
87 <a class="feedbackButton" id="feedbackYes"></a> 93 <a class="feedbackButton" id="feedbackYes"></a>
88 </div> 94 </div>
89 </div> 95 </div>
90 <div class="clear"></div> 96 <div class="clear"></div>
91 </div> 97 </div>
92 </body> 98 </body>
93 $3 99 $3
94 </html> 100 </html>
OLDNEW
« no previous file with comments | « components/dom_distiller/core/css/distilledpage.css ('k') | components/dom_distiller/core/javascript/dom_distiller_viewer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698