var selectors = {
    '*': '',
    'div': '',
    'div:nth-child(2)': '',
    'div:nth-child(n)': '',
    'div:nth-child(2n)': '',
    'div:nth-child(2n+1)': '',
    'div:nth-child(odd)': '',
    'div:nth-child(even)': '',
    'div:empty': '',
    'button:enabled': '',
    'button:disabled': '',
    'option:selected': '',
    'div{display=none}': '',
    'div{display=\'none\'}': '',
    'div{display="none"}': '',
    'div{display*=none}': '',
    'div[style*="display: none"]': '',
};
