Revision fe3239aec3da54e7ce66751ad6d0a98e2bc102e3 authored by ffxbld on 02 May 2015, 10:19:37 UTC, committed by ffxbld on 02 May 2015, 10:19:37 UTC
1 parent e6082e0
Raw File
862610.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>
back to top