summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/fieldset/dynamic-text-indent.html
blob: eb7509c77a6737ad554541a26871e16b8ab297cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html class="reftest-wait">
  <fieldset style="border: none">Text</fieldset>
  <script>
    onload = function() {
      var f = document.querySelector("fieldset");
      window.w = f.offsetWidth;
      f.style.textIndent = "100px";
      document.documentElement.className = "";
    }
  </script>
</html>