http://webkit.org/css-status/ hangs
Created attachment 394922 [details] Patch
Comment on attachment 394922 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=394922&action=review > Websites/webkit.org/wp-content/themes/webkit/css-status.php:1604 > + for (var valueObj of prefixedValues) { Two potential improvements here: 1. use `const` instead of `var` when declaring `prefixedValues`. 2. do not declare that value and just have `for (var valueObj of Array.from(prefixedPropertyObj.values))`
Committed r259203: <https://trac.webkit.org/changeset/259203> All reviewed patches have been landed. Closing bug and clearing flags on attachment 394922 [details].
<rdar://problem/61060038>