haikuwebkit/LayoutTests/fast/encoding/decoder-allow-null-chars.html

15 lines
363 B
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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.testRunner) {
testRunner.dumpAsText();
}
var message = "Test Failed";
var result = document.getElementById('res');
</script>
<script>
result.innerHTML = message;
</script>
</html>