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

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

Issue 1008993007: Fix style on iOS for distilled content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 <link rel="stylesheet" href="/$2"> 12 <style>
nyquist 2015/03/19 21:39:15 Should the <link rel...> be within <style></style>
noyau (Ping after 24h) 2015/03/24 22:11:12 Yes, my mistake, this is a remnant of my iteration
13 $2
14 </style>
13 <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet ' type='text/css'> 15 <link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet ' type='text/css'>
14 </head> 16 </head>
15 <body dir="$9" class="$4"> 17 <body dir="$9" class="$4">
16 <div id="mainContent"> 18 <div id="mainContent">
17 <article> 19 <article>
18 <header> 20 <header>
19 <h1>$1</h1> 21 <h1>$1</h1>
20 </header> 22 </header>
21 <div id="content">$5</div> 23 <div id="content">$5</div>
22 </article> 24 </article>
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 <span class="base"></span> 73 <span class="base"></span>
72 <span class="mover"></span> 74 <span class="mover"></span>
73 </span> 75 </span>
74 </div> 76 </div>
75 </div> 77 </div>
76 </div> 78 </div>
77 <div id="showOriginal"> 79 <div id="showOriginal">
78 <a href="$7">$8</a> 80 <a href="$7">$8</a>
79 </div> 81 </div>
80 </body> 82 </body>
81 <script src="/$3"></script> 83 $3
82 </html> 84 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698