summaryrefslogtreecommitdiffstats
path: root/layout/reftests/text/1463020-letter-spacing-text-transform-2.html
blob: fe6e1b69ea30f0022b7af8c2d8b4b3ce88d4b0d1 (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: lowercase;
}
</style>
<body>
  <p>The two lines should match:
  <p><span id="test">𐐔𐐯𐑅𐐨𐑉𐐯𐐻</span><span id="nbsp">&nbsp;</span>
  <p><span id="ref">𐐔&nbsp;𐐯&nbsp;𐑅&nbsp;𐐨&nbsp;𐑉&nbsp;𐐯&nbsp;𐐻</span>
</body>
<script>
var nbspWidth = document.getElementById("nbsp").offsetWidth;
var test = document.getElementById("test");
test.style.letterSpacing = nbspWidth + "px";
document.documentElement.classList.remove("reftest-wait");
</script>