Html程序  |  15行  |  383 B

<html>
<p>This tests that we no longer strip nulls from tags.  This matches Firefox behavior.</p>
<div id="res">Test Passed</div>
<br>
<script>
    if (window.layoutTestController) {
        layoutTestController.dumpAsText();
    }
    var message = "Test Failed";
    var result = document.getElementById('res');
</script>
<script>
    result.innerHTML = message;
</script>
</html>