RESOLVED FIXED 182387
StyleBench: Attribute selectors and other improvements
https://bugs.webkit.org/show_bug.cgi?id=182387
Summary StyleBench: Attribute selectors and other improvements
Antti Koivisto
Reported 2018-02-01 07:07:25 PST
We should test attribute selectors too.
Attachments
patch (12.74 KB, patch)
2018-02-01 08:14 PST, Antti Koivisto
no flags
patch (11.02 KB, patch)
2018-02-07 05:53 PST, Antti Koivisto
joepeck: review+
Antti Koivisto
Comment 1 2018-02-01 08:14:23 PST
Antti Koivisto
Comment 2 2018-02-07 05:53:20 PST
Joseph Pecoraro
Comment 3 2018-02-07 11:14:13 PST
Comment on attachment 333279 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=333279&action=review r=me > PerformanceTests/StyleBench/resources/style-bench.js:203 > + if (valueNum==0) > + return ""; > + if (valueNum==1) > + return "val"; Normal style would be: if (valueNum === 0) return ""; if (valueNum === 1) return "val"; Up to you if you want to converge on `==` or `===`. > PerformanceTests/StyleBench/resources/style-bench.js:204 > + return `val${ valueNum }`; Style: Normally you don't use spaces inside the ${...}. > PerformanceTests/StyleBench/resources/style-bench.js:233 > + if (operator=='') Ditto on style. Or here you could even just: if (!operator) > PerformanceTests/StyleBench/resources/style-bench.js:266 > + result += this.randomAttributeSelector(); Style: Accidental double space after the operator. > PerformanceTests/StyleBench/resources/style-bench.js:493 > + const count = this.random.number(this.configuration.elementMaximumAttributes) + 1; > + for (let i = 0; i < count; ++i) > + element.setAttribute(this.randomAttributeName(), this.randomAttributeValue()); It is bad style to shadow both `i` and `count`. Had you used `var` you'd have run into issues! I'd recommend using different names just for clarity.
Antti Koivisto
Comment 4 2018-02-07 11:34:10 PST
Radar WebKit Bug Importer
Comment 5 2018-02-07 11:36:10 PST
Note You need to log in before you can comment on or make changes to this bug.