Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 515 Bytes

File metadata and controls

47 lines (33 loc) · 515 Bytes

selector-attribute-operator-whitelist

Specify a whitelist of allowed attribute operators.

[target="_blank"] {}
/**    ↑
 * These operators */

选项

array|string: ["array", "of", "operators"]|"operator"

给定:

[ "=", "|=" ]

以下模式被视为违规:

[class*="test"] {}
[title~="flower"] {}
[class^="top"] {}

以下模式被视为违规:

[target] {}
[target="_blank"] {}
[class|="top"] {}