summaryrefslogtreecommitdiffstats
path: root/dom/bindings/crashtests/1853542.html
blob: dee598e78d4eac44d4344155ce3b17ac95ccc721 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
let v = "";
Object.defineProperty(localStorage, "a", {
  get() {
    return v;
  },
  set(newValue) {
    v = newValue;
  },
  enumerable: true,
  configurable: true,
});
</script>