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

Unified Diff: chrome/browser/resources/security_warnings/interstitial_v2.html

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the presubmit warnings. 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/security_warnings/interstitial_v2.html
diff --git a/chrome/browser/resources/security_warnings/interstitial_v2.html b/chrome/browser/resources/security_warnings/interstitial_v2.html
index 406b75d633a4b31d9f75f078d856754ff2ba26ea..991aa3489ee1e668cc1c369a06e58c7639d5d2fe 100644
--- a/chrome/browser/resources/security_warnings/interstitial_v2.html
+++ b/chrome/browser/resources/security_warnings/interstitial_v2.html
@@ -1,17 +1,18 @@
<!doctype html>
-<html i18n-values="dir:textdirection;.style.fontSize:fontsize">
+<html i18n-values="dir:textdirection;">
<head>
<meta charset="utf-8">
<meta name="viewport"
content="initial-scale=1, minimum-scale=1, width=device-width">
<title i18n-content="tabTitle"></title>
+ <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
<link rel="stylesheet" href="interstitial_v2.css">
<script src="../../../../ui/webui/resources/js/util.js"></script>
<script src="ssl.js"></script>
<script src="safe_browsing.js"></script>
<script src="interstitial_v2.js"></script>
</head>
-<body id="body" i18n-values=".style.fontFamily:fontfamily">
+<body id="body">
<div class="interstitial-wrapper">
<div class="icon" id="icon"></div>
<div id="main-message">

Powered by Google App Engine
This is Rietveld 408576698