summaryrefslogtreecommitdiffstats
path: root/layout/reftests/font-face/bug533251.html
blob: 2ff13480c91c3f52916d19a8f84a58b5da2a096b (plain)
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
<!DOCTYPE HTML>
<html lang="ru">
<head>
<title>Bug 533251 crashtest</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  
<style type="text/css">

@font-face {
  font-family: test;
  src: url(../fonts/markA.ttf);
}

body {
  background-color: white;
}

div { 
  font-family: Bongo2020; /* nonexistent font */ 
  color: white;
}

p { font-family: test; }

</style>
</head>
<body>
<p>A</p>
<div>This shouldn't crash...</div>
</body>
</html>