mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
520 B
HTML
21 lines
520 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
HTMLElement.prototype.__proto__ = Proxy.create({}, {});
|
|
try {
|
|
window.Image;
|
|
} finally {
|
|
// Restore our prototype so the test harnesses can deal with us
|
|
// We can't just assign to __proto__ because it lives on our proto chain
|
|
// and we messed that up.
|
|
var desc = Object.getOwnPropertyDescriptor(Object.prototype, "__proto__");
|
|
desc.set.call(HTMLElement.prototype, Element.prototype);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body></body>
|
|
</html>
|