summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/395130-2.html
blob: 56cae0cff6b2db289c48f2e47498d5dfa8364e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<body><script>
window.onload = function() {
  var a = document.createTextNode("a ");
  var b = document.createElement("input");
  var c = document.createTextNode(" c");
  document.body.appendChild(a);
  document.body.appendChild(c);
  document.body.offsetWidth;
  document.body.insertBefore(b, c);
}
</script>
</body>
</html>