mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35:33 +01:00
Remove a fat arrow from /dom/nodes/attributes.html
This commit is contained in:
parent
aaad24c531
commit
329a5b0c95
1 changed files with 1 additions and 1 deletions
|
@ -585,7 +585,7 @@ function getEnumerableOwnProps1(obj) {
|
||||||
|
|
||||||
function getEnumerableOwnProps2(obj) {
|
function getEnumerableOwnProps2(obj) {
|
||||||
return Object.getOwnPropertyNames(obj).filter(
|
return Object.getOwnPropertyNames(obj).filter(
|
||||||
(name) => Object.getOwnPropertyDescriptor(obj, name).enumerable)
|
function (name) { return Object.getOwnPropertyDescriptor(obj, name).enumerable; })
|
||||||
}
|
}
|
||||||
|
|
||||||
test(function() {
|
test(function() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue