mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
417 B
HTML
16 lines
417 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
window.onload = function() {
|
|
document.removeChild(document.documentElement);
|
|
var oFrameset1 = document.createElement('frameset'),
|
|
oFrameset2 = document.createElement('frameset');
|
|
document.appendChild(oFrameset1);
|
|
oFrameset1.appendChild(oFrameset2);
|
|
oFrameset2.offsetWidth;
|
|
};
|
|
</script>
|
|
</head>
|
|
</html>
|