mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
269a1f1f10
--HG-- extra : rebase_source : 3eef5382c32927ac321db47003a974768cbdaf6e
20 lines
287 B
HTML
20 lines
287 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var frameDoc = document.getElementById("f").contentDocument;
|
|
frameDoc.adoptNode(document.createElement("select"));
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();">
|
|
<iframe id="f"></iframe>
|
|
</body>
|
|
</html>
|