summaryrefslogtreecommitdiffstats
path: root/layout/reftests/text/1463020-letter-spacing-text-transform-1.html
blob: e957a9bc984a82a01717fd93ccc09f457a4baf4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html class="reftest-wait">
<meta charset=utf-8>
<style>
span {
  font-size: 36px;
  font-kerning: none;
}
#test, #ref {
  text-transform: uppercase;
}
</style>
<body>
  <p>The two lines should match:
  <p><span id="test">S🇸🇪ve</span><span id="nbsp">&nbsp;</span>
  <p><span id="ref">S&nbsp;&nbsp;🇸🇪&nbsp;&nbsp;v&nbsp;&nbsp;e</span>
</body>
<script>
var nbspWidth = document.getElementById("nbsp").offsetWidth;
var test = document.getElementById("test");
test.style.letterSpacing = (2 * nbspWidth) + "px";
document.documentElement.classList.remove("reftest-wait");
</script>