netsurf/test/js/idl-treatnullas-emptystring.html

26 lines
767 B
HTML
Raw Normal View History

2016-02-01 23:50:42 +03:00
<!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>
<noscript><p>Javascript is disabled</p></noscript>
2016-02-01 23:50:42 +03:00
<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>