mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
2c680fd98b
This fixes an unresponsive script dialog error for Etherpad pages (possibly among other websites).
18 lines
390 B
HTML
18 lines
390 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<iframe></iframe>
|
|
</body>
|
|
<script>
|
|
onload = function() {
|
|
var i = document.querySelector("iframe");
|
|
var doc = i.contentDocument;
|
|
doc.body.appendChild(doc.createTextNode("foo"));
|
|
doc.designMode = "on";
|
|
while (doc.body.firstChild) {
|
|
doc.body.removeChild(doc.body.firstChild);
|
|
}
|
|
};
|
|
</script>
|
|
</html>
|