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

Side by Side Diff: chrome/browser/resources/history/history.html

Issue 747923004: webui: minimize webui flicker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: creis@ + davidben@ review Created 6 years 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 i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <if expr="is_android or is_ios"> 5 <if expr="is_android or is_ios">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0, 6 <meta name="viewport" content="width=device-width, initial-scale=1.0,
7 maximum-scale=1.0, user-scalable=no"> 7 maximum-scale=1.0, user-scalable=no">
8 </if> 8 </if>
9 <title i18n-content="title"></title> 9 <title i18n-content="title"></title>
10 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css"> 10 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css">
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 <script src="chrome://resources/js/util.js"></script> 53 <script src="chrome://resources/js/util.js"></script>
54 54
55 <script src="chrome://history-frame/history.js"></script> 55 <script src="chrome://history-frame/history.js"></script>
56 <if expr="not is_android"> 56 <if expr="not is_android">
57 <script src="chrome://history-frame/other_devices.js"></script> 57 <script src="chrome://history-frame/other_devices.js"></script>
58 </if> 58 </if>
59 59
60 </head> 60 </head>
61 61
62 <if expr="not is_android and not is_ios"> 62 <if expr="not is_android and not is_ios">
63 <body class="uber-frame" 63 <body class="uber-frame">
64 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
65 </if> 64 </if>
66 <if expr="is_android or is_ios"> 65 <if expr="is_android or is_ios">
67 <body i18n-values=".style.fontFamily:fontfamily"> 66 <body>
68 </if> 67 </if>
69 68
70 <if expr="not is_android and not is_ios"> 69 <if expr="not is_android and not is_ios">
71 <div id="overlay" class="overlay" hidden> 70 <div id="overlay" class="overlay" hidden>
72 <include src="alert_overlay.html"> 71 <include src="alert_overlay.html">
73 </div> 72 </div>
74 </if> 73 </if>
75 74
76 <div id="history-page" class="page"> 75 <div id="history-page" class="page">
77 <div id="scrolling-container"> 76 <div id="scrolling-container">
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 136
138 <menu id="action-menu" hidden> 137 <menu id="action-menu" hidden>
139 <button id="more-from-site" i18n-content="moreFromSite"></button> 138 <button id="more-from-site" i18n-content="moreFromSite"></button>
140 <button id="remove-visit" i18n-content="removeFromHistory"></button> 139 <button id="remove-visit" i18n-content="removeFromHistory"></button>
141 </menu> 140 </menu>
142 141
143 <script src="chrome://history-frame/strings.js"></script> 142 <script src="chrome://history-frame/strings.js"></script>
144 <script src="chrome://resources/js/i18n_template2.js"></script> 143 <script src="chrome://resources/js/i18n_template2.js"></script>
145 </body> 144 </body>
146 </html> 145 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/help/help.html ('k') | chrome/browser/resources/history/history_mobile.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698