Update web-platform-tests to revision ee40b886c701ffa25a673240cabdedd59ee3ace4

This commit is contained in:
Ms2ger
2015-11-24 12:29:19 +01:00
parent a00f2d6310
commit 3a79c9b53f
44 changed files with 631 additions and 75 deletions

View File

@@ -0,0 +1,12 @@
<body>
<script>
var i = document.createElement("iframe");
i.name = "nested1";
document.body.appendChild(i);
window.opener.postMessage({
"name": window.name,
"isTop": window.top === window
}, "*");
</script>
</body>