Test for [TreatNullAs=EmptyString]

This commit is contained in:
John-Mark Bell 2016-02-01 20:50:42 +00:00
parent 9fb755b754
commit 25b88e42e6

View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<title>Ensure that [TreatNullAs=EmptyString] works correctly</title>
<link rel="stylesheet" type="text/css" href="tst.css">
</head>
<body text="blue">
<h1>Ensure that [TreatNullAs=EmptyString] works correctly</h1>
<script>
var e = document.createElement("p");
var t = document.createTextNode("Initial body text:\""+document.body.text+"\" (should be \"blue\")");
e.appendChild(t);
document.body.appendChild(e);
document.body.text = null;
var e2 = document.createElement("p");
var t2 = document.createTextNode("New body text:\""+document.body.text+"\" (should be \"\")");
e2.appendChild(t2);
document.body.appendChild(e2);
</script>
</body>
</html>