summaryrefslogtreecommitdiffstats
path: root/layout/reftests/font-face/dynamic-duplicate-rule-1a.html
blob: 215f09f35106a3900d8be6e6c819ba74c08c0391 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<meta charset="utf-8">

<!-- Testcase for bug 879963 regression.
     We have two <style> elements with identical @font-face rules, which will
     share a common proxy font entry. When the entry is loaded, the references
     in both rules must be updated, otherwise text may disappear if the "wrong"
     (non-updated) rule is subsequently used.
     By disabling the first style element after the document has loaded (and the
     user font has been resolved to a real font entry), we can check that the
     second rule also works as expected.
     Note that if a platform doesn't have any of the local() fonts listed,
     the testcase will "pass" harmlessly as a no-op. -->

<style type="text/css" id="style1">
@font-face {
  font-family: foo;
  src: local("Arial"),
       local("DejaVu Sans"),
       local("Free Sans"),
       local("Open Sans"),
       local("Droid Sans"),
       local("Roboto");
}
</style>

<style type="text/css" id="style2">
@font-face {
  font-family: foo;
  src: local("Arial"),
       local("DejaVu Sans"),
       local("Free Sans"),
       local("Open Sans"),
       local("Droid Sans"),
       local("Roboto");
}
</style>

<style type="text/css">
body {
  font-family: serif;
}
.test {
  font-family: foo;
}
</style>

<script type="application/javascript">
function run() {
  document.getElementById("style1").disabled = true;
  document.documentElement.removeAttribute("class");
}
</script>

</head>

<body onload="run()">
<div>
foo <span class="test">bar</span> baz
</div>
</body>

</html>