From 3c464adce73d1922c1b911a603f51603d328aa25 Mon Sep 17 00:00:00 2001 From: k-utsumi Date: Thu, 13 Jul 2017 14:07:12 +0900 Subject: [PATCH 1/2] Adjust `user-select` properties vlue. Since there is no `auto`, I added the following as a reference. https://developer.mozilla.org/ja/docs/Web/CSS/user-select --- src/css/Properties.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/css/Properties.js b/src/css/Properties.js index 3e84b4af..514997d3 100644 --- a/src/css/Properties.js +++ b/src/css/Properties.js @@ -460,7 +460,7 @@ var Properties = module.exports = { // U "unicode-bidi" : "normal | embed | isolate | bidi-override | isolate-override | plaintext", "user-modify" : "read-only | read-write | write-only", - "user-select" : "none | text | toggle | element | elements | all", + "user-select" : "none | auto | text | all | contain | element | elements | toggle", // V "vertical-align" : "auto | use-script | baseline | sub | super | top | text-top | central | middle | bottom | text-bottom | | ", From 9f1d94b88291201b8f6528ee082f34f63564a81c Mon Sep 17 00:00:00 2001 From: k-utsumi Date: Thu, 17 Aug 2017 23:59:40 +0900 Subject: [PATCH 2/2] fix properties --- src/css/Properties.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/css/Properties.js b/src/css/Properties.js index 514997d3..8b30aa5a 100644 --- a/src/css/Properties.js +++ b/src/css/Properties.js @@ -460,7 +460,7 @@ var Properties = module.exports = { // U "unicode-bidi" : "normal | embed | isolate | bidi-override | isolate-override | plaintext", "user-modify" : "read-only | read-write | write-only", - "user-select" : "none | auto | text | all | contain | element | elements | toggle", + "user-select" : "auto | text | none | contain | all", // V "vertical-align" : "auto | use-script | baseline | sub | super | top | text-top | central | middle | bottom | text-bottom | | ",