summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/fieldset/dynamic-legend-scroll-1.html
blob: 0870f06a00a47856866070488579901f8911583a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<style>
fieldset { 
  background:pink;
  overflow:hidden;
  height:100px;
}
legend::after { content:"legend"; }
p {
  background:lime;
  height:20px;
}
</style>
</head>
<body>
<fieldset id="f1"><p></p></fieldset>
<br>
<fieldset id="f2"><p></p></fieldset>
<br>
<fieldset id="f3"></fieldset>
<script>
function doTest() {
  f1.appendChild(document.createElement('legend'));
  f2.insertBefore(document.createElement('legend'), f2.firstChild);
  f3.appendChild(document.createElement('legend'));
  document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>