blob: f0d8f35bbc74eeaa1695ddde05dba3d897e3814e [file] [log] [blame]
<head>
<script src="../../resources/gc.js"></script>
<script>
function runTest()
{
if (window.testRunner)
testRunner.dumpAsText();
var validity = document.getElementById("control").validity;
document.body.removeChild(document.getElementById("control"));
gc();
validity.valueMissing;
document.getElementById("result").firstChild.data = "Test has run: If no assertion or crash occurred, it passed.";
}
</script>
</head>
<body onload="runTest()">
<p>Tests the behavior of removing a control and then accessing its validity state afterward.</p>
<select id="control"></select>
<p id="result">TEST DID NOT RUN YET</p>
</body>