Skip to content

Commit 76c55ec

Browse files
committed
Merge branch 'master' into feat/migrate-to-webidl
2 parents 50d66c8 + b527ed7 commit 76c55ec

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A Node JS implementation of the CSS Object Model [CSSStyleDeclaration interface]
88

99
This package is an extension of the CSSStyleDeclaration class in Nikita Vasilyev's [CSSOM](https://github.com/NV/CSSOM) with added support for CSS 2 & 3 properties. The primary use case is for testing browser code in a Node environment.
1010

11-
It was originally created by Chad Walker, it is now maintained by Jon Sakas and other open source contributors.
11+
It was originally created by Chad Walker, it is now maintained by the jsdom community.
1212

1313
Bug reports and pull requests are welcome.
1414

lib/allProperties.js

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
// autogenerated - 1/20/2020
3+
// autogenerated - 4/29/2020
44

55
/*
66
*
@@ -258,7 +258,6 @@ module.exports = new Set([
258258
'margin-left',
259259
'margin-right',
260260
'margin-top',
261-
'margin-trim',
262261
'marker-side',
263262
'mask',
264263
'mask-border',
@@ -345,6 +344,9 @@ module.exports = new Set([
345344
'quotes',
346345
'region-fragment',
347346
'resize',
347+
'rest',
348+
'rest-after',
349+
'rest-before',
348350
'richness',
349351
'right',
350352
'row-gap',
@@ -386,6 +388,7 @@ module.exports = new Set([
386388
'spatial-navigation-contain',
387389
'spatial-navigation-function',
388390
'speak',
391+
'speak-as',
389392
'speak-header',
390393
'speak-numeral',
391394
'speak-punctuation',
@@ -431,7 +434,14 @@ module.exports = new Set([
431434
'user-select',
432435
'vertical-align',
433436
'visibility',
437+
'voice-balance',
438+
'voice-duration',
434439
'voice-family',
440+
'voice-pitch',
441+
'voice-range',
442+
'voice-rate',
443+
'voice-stress',
444+
'voice-volume',
435445
'volume',
436446
'white-space',
437447
'widows',

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"CSSStyleDeclaration",
77
"StyleSheet"
88
],
9-
"version": "2.2.0",
9+
"version": "2.3.0",
1010
"homepage": "https://github.com/jsdom/cssstyle",
1111
"maintainers": [
1212
{

0 commit comments

Comments
 (0)