[Webkit-unassigned] [Bug 159055] New: Match updated spec `/\w/iu` and `/\W/iu`
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Jun 23 02:17:31 PDT 2016
https://bugs.webkit.org/show_bug.cgi?id=159055
Bug ID: 159055
Summary: Match updated spec `/\w/iu` and `/\W/iu`
Classification: Unclassified
Product: WebKit
Version: WebKit Nightly Build
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: JavaScriptCore
Assignee: webkit-unassigned at lists.webkit.org
Reporter: mathias at qiwi.be
Now that https://github.com/tc39/ecma262/pull/525 has landed, `\u017F` (LATIN SMALL LETTER LONG S) and `\u212A` (KELVIN SIGN) are word characters for `/iu` patterns.
Expected behavior:
/\w/iu.test('\u017F') // true
/\w/iu.test('\u212A') // true
/\W/iu.test('\u017F') // false
/\W/iu.test('\u212A') // false
Actual behavior: currently, they all result in `true`.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160623/67dee38c/attachment.html>
More information about the webkit-unassigned
mailing list