blob: 3e9b920eb076cbf45b21e2426bd8c4648ed45425 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!doctype html>
<html lang="ja" class="reftest-wait">
<meta charset="UTF-8">
<title>Bug 1229278 - Dynamic change to text-emphasis-style</title>
<style>
div {
line-height: 5;
text-emphasis-style: filled triangle;
}
.reftest-wait div {
text-emphasis-style: filled circle;
}
</style>
<div>テスト</div>
<script>
document.addEventListener("MozReftestInvalidate", function() {
document.documentElement.className = "";
});
</script>
</html>
|