haikuwebkit/LayoutTests/fast/dom/innerHTML-nbsp.html

28 lines
697 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>
<head>
<meta charset="utf-8">
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
<script>
function getContent() {
var regx=new RegExp('&nbsp;','gi');
var a=document.body.innerHTML.replace(regx,' ');
var h='';
for(var i=0;i<a.length;i++) {
if (a.charCodeAt(i) != 32 && a.charCodeAt(i) != 0x0a) {
document.write("RegExp FAIL<p>");
return;
}
}
if (document.body.innerHTML.search("&nbsp;&nbsp;&nbsp;&nbsp;") < 0) {
document.write("innerHTML FAIL: <xmp>" + document.body.innerHTML + "</xmp>");
return;
}
document.write("PASS<p>");
}
</script>
</head>
<body onload="getContent()">&nbsp;&nbsp;  </body></html>