mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
7c90dee12e
--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>
|