Skip to content

Commit 392571a

Browse files
committed
Merge branch 'master' of github.com:nzakas/parser-lib
2 parents cdc8ca8 + 2cfcc7f commit 392571a

File tree

8 files changed

+55
-8
lines changed

8 files changed

+55
-8
lines changed

build/node-parserlib.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
2222
2323
*/
24-
/* Version v@VERSION@, Build time: 4-May-2012 03:57:04 */
24+
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
2525
var parserlib = {};
2626
(function(){
2727

@@ -931,7 +931,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
931931
THE SOFTWARE.
932932
933933
*/
934-
/* Version v@VERSION@, Build time: 4-May-2012 03:57:04 */
934+
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
935935
(function(){
936936
var EventTarget = parserlib.util.EventTarget,
937937
TokenStreamBase = parserlib.util.TokenStreamBase,
@@ -3811,6 +3811,7 @@ var Properties = {
38113811
"pitch" : 1,
38123812
"pitch-range" : 1,
38133813
"play-during" : 1,
3814+
"pointer-events" : "auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit",
38143815
"position" : "static | relative | absolute | fixed | inherit",
38153816
"presentation-level" : 1,
38163817
"punctuation-trim" : 1,

build/npm/lib/node-parserlib.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
2222
2323
*/
24-
/* Version v@VERSION@, Build time: 4-May-2012 03:57:04 */
24+
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
2525
var parserlib = {};
2626
(function(){
2727

@@ -931,7 +931,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
931931
THE SOFTWARE.
932932
933933
*/
934-
/* Version v@VERSION@, Build time: 4-May-2012 03:57:04 */
934+
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
935935
(function(){
936936
var EventTarget = parserlib.util.EventTarget,
937937
TokenStreamBase = parserlib.util.TokenStreamBase,
@@ -3811,6 +3811,7 @@ var Properties = {
38113811
"pitch" : 1,
38123812
"pitch-range" : 1,
38133813
"play-during" : 1,
3814+
"pointer-events" : "auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit",
38143815
"position" : "static | relative | absolute | fixed | inherit",
38153816
"presentation-level" : 1,
38163817
"punctuation-trim" : 1,

build/parserlib-core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
2222
2323
*/
24-
/* Version v@VERSION@, Build time: 4-May-2012 03:57:04 */
24+
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
2525
var parserlib = {};
2626
(function(){
2727

build/parserlib-css.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
2222
2323
*/
24-
/* Version v@VERSION@, Build time: 4-May-2012 03:57:04 */
24+
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
2525
(function(){
2626
var EventTarget = parserlib.util.EventTarget,
2727
TokenStreamBase = parserlib.util.TokenStreamBase,
@@ -2901,6 +2901,7 @@ var Properties = {
29012901
"pitch" : 1,
29022902
"pitch-range" : 1,
29032903
"play-during" : 1,
2904+
"pointer-events" : "auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit",
29042905
"position" : "static | relative | absolute | fixed | inherit",
29052906
"presentation-level" : 1,
29062907
"punctuation-trim" : 1,

build/parserlib-tests.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2771,6 +2771,27 @@
27712771
}
27722772
}));
27732773

2774+
suite.add(new ValidationTestCase({
2775+
property: "pointer-events",
2776+
2777+
valid: [
2778+
"auto",
2779+
"none",
2780+
"visiblePainted",
2781+
"visibleFill",
2782+
"visibleStroke",
2783+
"visible",
2784+
"painted",
2785+
"fill",
2786+
"stroke",
2787+
"all",
2788+
"inherit"
2789+
],
2790+
2791+
invalid: {
2792+
"foo" : "Expected (auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit) but found 'foo'."
2793+
}
2794+
}));
27742795

27752796
suite.add(new ValidationTestCase({
27762797
property: "z-index",

build/parserlib.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
THE SOFTWARE.
2222
2323
*/
24-
/* Version v@VERSION@, Build time: 4-May-2012 03:57:04 */
24+
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
2525
var parserlib = {};
2626
(function(){
2727

@@ -931,7 +931,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
931931
THE SOFTWARE.
932932
933933
*/
934-
/* Version v@VERSION@, Build time: 4-May-2012 03:57:04 */
934+
/* Version v@VERSION@, Build time: 20-May-2012 01:46:33 */
935935
(function(){
936936
var EventTarget = parserlib.util.EventTarget,
937937
TokenStreamBase = parserlib.util.TokenStreamBase,
@@ -3811,6 +3811,7 @@ var Properties = {
38113811
"pitch" : 1,
38123812
"pitch-range" : 1,
38133813
"play-during" : 1,
3814+
"pointer-events" : "auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit",
38143815
"position" : "static | relative | absolute | fixed | inherit",
38153816
"presentation-level" : 1,
38163817
"punctuation-trim" : 1,

src/css/Properties.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,7 @@ var Properties = {
385385
"pitch" : 1,
386386
"pitch-range" : 1,
387387
"play-during" : 1,
388+
"pointer-events" : "auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit",
388389
"position" : "static | relative | absolute | fixed | inherit",
389390
"presentation-level" : 1,
390391
"punctuation-trim" : 1,

tests/css/Validation.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -522,6 +522,27 @@
522522
}
523523
}));
524524

525+
suite.add(new ValidationTestCase({
526+
property: "pointer-events",
527+
528+
valid: [
529+
"auto",
530+
"none",
531+
"visiblePainted",
532+
"visibleFill",
533+
"visibleStroke",
534+
"visible",
535+
"painted",
536+
"fill",
537+
"stroke",
538+
"all",
539+
"inherit"
540+
],
541+
542+
invalid: {
543+
"foo" : "Expected (auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit) but found 'foo'."
544+
}
545+
}));
525546

526547
suite.add(new ValidationTestCase({
527548
property: "z-index",

0 commit comments

Comments
 (0)