- STR=supports.style( css-feature );
- STR|BOL == "O"|"Ms"|"Khtml"|"Webkit"|"Moz"|"" + css-feature || false
- STR=supports.value( css-feature , css-value );
- STR|BOL == ("-" + "o"|"ms"|"khtml"|"webkit"|"moz" + "-" || "") + css-value || false
- BOL=supports.vml();
- BOL=supports.svg();
- BOL=supports.svg( svg-feature );
- BOL=supports.select();
- BOL=supports.history();
- BOL=supports.window( html5-feature );
- BOL=supports.navig( special-feature );
- BOL=supports.attr( element-type, attribute-name );
- BOL=supports.func( element-type, function-name );
- BOL=supports.canvas( context );
- BOL=supports.canvas( context, canvas-feature );
- BOL=supports.input( input-type );
- BOL=supports.input( input-type, input-attribute );
- BOL=supports.event( event-name );
- BOL=supports.event( event-name, html-element );
- BOL=supports.element( element-type );
- BOL=supports.element( element-type, boolean );
- BOL=supports.audio();
- STR=supports.audio( mime-type, codec );
- STR|BOL == ("probably"|"maybe") || false
- BOL=supports.video();
- STR=supports.video( mime-type, codec );
- STR|BOL == ("probably"|"maybe") || false
- STR=supports.engine;
- STR == "O"|"Ms"|"Khtml"|"Webkit"|"Moz"|""
- FLT=supports.version;
- STR=supports.released;
"css-feature" must be written in DOM syntax!
The DOM syntax of CSS properties:
Remove the hyphen and write the first letter of the word behind the hyphen in upper case.
Example: background-color becomes backgroundColor
|