Mypal/dom/base/crashtests/695867.html

10 lines
239 B
HTML

<!DOCTYPE html>
<script>
var nodeList = document.documentElement.childNodes;
nodeList.__proto__ = null;
var p = new Proxy({}, {getOwnPropertyDescriptor: function() {return nodeList}});
Reflect.getOwnPropertyDescriptor(p, "x");
</script>