Skip to content

Commit

Permalink
sync domprops with Firefox 125 and Chrome 124
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiosantoscode committed Apr 28, 2024
1 parent 4cd17bf commit 14062bc
Show file tree
Hide file tree
Showing 3 changed files with 719 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/compress/properties.js
Expand Up @@ -140,8 +140,8 @@ mangle_properties: {
a["foo"] = "bar";
a.color = "red";
x = {"bar": 10};
a.run(x.bar, a.foo);
a['run']({color: "blue", foo: "baz"});
a.doRun(x.bar, a.foo);
a['doRun']({color: "blue", foo: "baz"});
}
expect: {
a["o"]="bar";a.color="red";x={l:10};a.u(x.l,a.o);a["u"]({color:"blue",o:"baz"});
Expand Down

0 comments on commit 14062bc

Please sign in to comment.