From 99e736a196512d6d86498221586bc10328c56fca Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Mon, 4 Dec 2017 16:30:23 -0800 Subject: [PATCH] [Normative] Add RegExp Unicode property escapes Proposal repo: https://github.com/tc39/proposal-regexp-unicode-property-escapes --- spec.html | 156 ++- table-binary-unicode-properties.html | 419 +++++++ table-nonbinary-unicode-properties.html | 38 + table-unicode-general-category-values.html | 357 ++++++ table-unicode-script-values.html | 1282 ++++++++++++++++++++ 5 files changed, 2248 insertions(+), 4 deletions(-) create mode 100644 table-binary-unicode-properties.html create mode 100644 table-nonbinary-unicode-properties.html create mode 100644 table-unicode-general-category-values.html create mode 100644 table-unicode-script-values.html diff --git a/spec.html b/spec.html index 9862ba5a15..66822a3229 100644 --- a/spec.html +++ b/spec.html @@ -23,6 +23,15 @@ #ecma-logo { width: 500px; } + .unicode-property-table { + table-layout: fixed; + width: 100%; + font-size: 80%; + } + .unicode-property-table ul { + padding-left: 0; + list-style: none; + }