mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-25 16:59:01 +09:00
9 lines
239 B
HTML
9 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>
|