1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17

content / test / data / remove_object_element_with_invalid_data.html [blame]

<html>
<head>
<script>

function DoLoad() {
  let test_div = document.getElementById("test_div");
  document.body.removeChild(test_div);
}

</script>
</head>
<body onload="DoLoad();">
<div id="test_div">
  <object data="INVALID"></object>
</div>
</body>
</html>