about summary refs log blame commit diff stats
path: root/test/js/document.html
blob: 26dfa528b2100c5f3a7064125f85372f2f260cc2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                        
<!doctype html>
<title>Window test</title>
<div id="abc">Fail</div>
<script>
(function() {
	if (document.toString() !== "[object Document]") return;
	if (document !== window.document) return;
	if (document.implementation !== document.implementation) return;
	document.getElementById("abc").textContent = "Success";
})()
</script>