-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfobar.html
More file actions
33 lines (33 loc) · 750 Bytes
/
infobar.html
File metadata and controls
33 lines (33 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<!--
infobar.html: This file specifies the format for the infobar that appears in chrome when a page is scored based on malicious javascripts running.
-->
<!-- This code is based off of code developed by The Chromium Authors (c) 2013
-->
<html>
<head>
<style>
html {
height: 40px;
}
body {
background: #fffddd;
font: 16px Arial;
height: 100%;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-pack: center;
}
em {
font-weight: bold;
font-style: normal;
}
</style>
</head>
<body>
<div id="wrap">
<em id ="warning">X</em>
</div>
<script src="infobar.js"></script>
</body>
</html>