RESOLVED DUPLICATE of bug 50483 50654
REGRESSION: Invalid regular expression errors on this site
https://bugs.webkit.org/show_bug.cgi?id=50654
Summary REGRESSION: Invalid regular expression errors on this site
Simon Fraser (smfr)
Reported 2010-12-07 16:26:11 PST
Hovering over "Spooon" on this site no longer does transitions. It looks like the page is trying to do feature detection, and is serving up un-prefixed 'transform' properties now. I'm not sure why.
Attachments
Simon Fraser (smfr)
Comment 1 2010-12-07 17:01:55 PST
The real issue is: SyntaxError: Invalid regular expression: invalid range in character class: Beautifying the source, I see failures relating to the following lines: bO = bO.replace(/#[\w-_]+/, aA); bO = bO.replace(/(?:::|:|\.)[\w-_()]+|\[.*?\]/, aA);
Simon Fraser (smfr)
Comment 2 2010-12-07 17:02:37 PST
Gavin Barraclough
Comment 3 2010-12-08 12:55:56 PST
The problem here is that /[\w-_]/ is technically invalid, and we've been experimenting with slightly closer conformance to the spec in our regex engine. This appears to be breaking the web, so we'll be relaxing our interpretation of these rules again soon. cheers, G.
Gavin Barraclough
Comment 4 2010-12-08 21:52:08 PST
This should be fixed in r73594. *** This bug has been marked as a duplicate of bug 50483 ***
Note You need to log in before you can comment on or make changes to this bug.