mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update web-platform-tests to revision a5cb9597799c5f9bf0a809006161a0c50055828f
This commit is contained in:
parent
8b56b7a3c2
commit
2a42c14544
646 changed files with 93200 additions and 2587 deletions
|
@ -0,0 +1,5 @@
|
|||
<iframe id="i"></iframe>
|
||||
<script>
|
||||
i.contentDocument.documentElement.appendChild(document.body);
|
||||
</script>
|
||||
<template> </template>
|
|
@ -0,0 +1,7 @@
|
|||
<iframe id="i"></iframe>
|
||||
<script>
|
||||
var t = i.contentDocument.createElement("template");
|
||||
i.contentDocument.documentElement.appendChild(t);
|
||||
i.remove();
|
||||
t.content;
|
||||
</script>
|
|
@ -0,0 +1,7 @@
|
|||
<div id="d">
|
||||
<iframe id="i"></iframe>
|
||||
<template id="t"> </template>
|
||||
</div>
|
||||
<script>
|
||||
i.contentDocument.documentElement.appendChild(d);
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue