blob: 26dfa528b2100c5f3a7064125f85372f2f260cc2 (
plain) (
blame)
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>
|