check_multiple_features
Verify CSS and JavaScript feature compatibility for multiple features simultaneously in Chrome 37 to identify browser support issues and ensure cross-browser functionality.
Instructions
Check support for multiple CSS/JS features in Chrome 37 at once
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| features | Yes | Array of caniuse feature names to check | 
Input Schema (JSON Schema)
{
  "properties": {
    "features": {
      "description": "Array of caniuse feature names to check",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "features"
  ],
  "type": "object"
}