mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
600 B
HTML
20 lines
600 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
// Failures in this file can manifest as ###!!! ASSERTION: scope has non-empty map: '0 == mWrappedNativeMap->Count()'
|
|
// followed by an Assertion failure: allocated() crash during the next GC.
|
|
// It can also manifest as a leak.
|
|
function breakthings() {
|
|
var e = document.createElement("embed");
|
|
var i = document.getElementById("i");
|
|
i.contentDocument.body.appendChild(e);
|
|
i.src = "about:blank";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="javascript:breakthings();">
|
|
<iframe id="i" />
|
|
</body>
|
|
</html>
|