File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -491,7 +491,7 @@ var Properties = {
491491 "transition-timing-function" : 1 ,
492492
493493 //U
494- "unicode-bidi" : "normal | embed | bidi-override | inherit" ,
494+ "unicode-bidi" : "normal | embed | isolate | bidi-override | isolate-override | plaintext | inherit" ,
495495 "user-modify" : "read-only | read-write | write-only | inherit" ,
496496 "user-select" : "none | text | toggle | element | elements | all | inherit" ,
497497
Original file line number Diff line number Diff line change 755755 }
756756 } ) ) ;
757757
758+ suite . add ( new ValidationTestCase ( {
759+ property : "unicode-bidi" ,
760+
761+ valid : [
762+ "normal" ,
763+ "embed" ,
764+ "isolate" ,
765+ "bidi-override" ,
766+ "isolate-override" ,
767+ "plaintext" ,
768+ "inherit"
769+ ] ,
770+
771+ invalid : {
772+ "foo" : "Expected (normal | embed | isolate | bidi-override | isolate-override | plaintext | inherit) but found 'foo'."
773+ }
774+ } ) ) ;
775+
758776 YUITest . TestRunner . add ( suite ) ;
759777
760778} ) ( ) ;
You can’t perform that action at this time.
0 commit comments