mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12 lines
264 B
HTML
12 lines
264 B
HTML
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<body id="realbody">
|
||
|
</body>
|
||
|
<body style="background:blue;">
|
||
|
</body>
|
||
|
<script>
|
||
|
if (document.body != document.getElementById("realbody")) {
|
||
|
document.body.appendChild(document.createTextNode("FAIL"));
|
||
|
}
|
||
|
</script>
|
||
|
</html>
|