summaryrefslogtreecommitdiffstats
path: root/layout/reftests/columns/dynamic-text-indent-2.html
blob: a36b8d1bc0c7330acf721389f082940e0a2a8e89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html class="reftest-wait">
  <fieldset style="column-count: 2; width: 200px; border: none">
    This is some text that is too long and it will overflow.
  </fieldset>
  <script>
  onload = function() {
    var f = document.querySelector("fieldset");
    window.w = f.offsetWidth;
    f.style.textIndent = "50px";
    document.documentElement.className = "";
  }
  </script>
</html>