* SUMMARY Use String.prototype.startsWith in more places. Checking `"haystack".indexOf("needle") === 0` may be less efficient, but certainly is less readable, then `"haystack".startsWith("needle")` which can bail after the first character comparison.
Created attachment 251282 [details] [PATCH] Proposed Fix
Comment on attachment 251282 [details] [PATCH] Proposed Fix Clearing flags on attachment: 251282 Committed r183092: <http://trac.webkit.org/changeset/183092>
All reviewed patches have been landed. Closing bug.