tenfourfox/layout/reftests/text-decoration/emphasis-style-dynamic.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

21 lines
465 B
HTML

<!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>