695867.html (239B)
1 <!DOCTYPE html> 2 <script> 3 4 var nodeList = document.documentElement.childNodes; 5 nodeList.__proto__ = null; 6 var p = new Proxy({}, {getOwnPropertyDescriptor: function() {return nodeList}}); 7 Reflect.getOwnPropertyDescriptor(p, "x"); 8 9 </script>