summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/395130-2-ref.html
blob: a26d9ee9f2bd0d49da523b05985ed87e967a08a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!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(b);
  document.body.appendChild(c);
}
</script>
</body>
</html>