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