Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/bindings/crashtests/crashtests.list
<script>
let v = "";
Object.defineProperty(localStorage, "a", {
get() {
return v;
},
set(newValue) {
v = newValue;
},
enumerable: true,
configurable: true,
});
</script>