mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
384 B
HTML
16 lines
384 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
function loaded() {
|
|
var node = document.createElement("frame");
|
|
node.src = "data:text/plain,PASS";
|
|
node.setAttribute("onload", "document.documentElement.className = ''");
|
|
document.getElementById("x").appendChild(node);
|
|
}
|
|
</script>
|
|
</head>
|
|
<frameset rows="*" id="x" onload="loaded()">
|
|
</frameset>
|
|
</html>
|