mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
365 B
HTML
18 lines
365 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Crash [@ nsContentSink::ProcessHeaderData] with meta in innerHTML</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="testdiv">
|
||
|
testdiv
|
||
|
</div>
|
||
|
<script>
|
||
|
var x=document.createElement('div');
|
||
|
x.innerHTML = '<meta http-equiv="Content-Type" content="text/html;"></meta>';
|
||
|
document.getElementById("testdiv").appendChild(x);
|
||
|
</script>
|
||
|
some text here
|
||
|
</body>
|
||
|
</html>
|
||
|
|