This line should be green ([title~="tilde"] matches title="tilde")

This line should be green ([title~=""] doesn't match title="")

This line should be green ([title~=""] doesn't match title="foo")

This line should be green ([title~=""] doesn't match title="x␣␣y")

This line should be green ([title|=bar] matches title="bar")

This line should be green ([title|=""] does not match title="")

This line should be green ([title|=""] does not match title="foo")

This line should be green ([title|=""] does not match title="-foo")

This line should be green ([title|=""] does not match title="--foo")

This line should be green ([title|=""] does not match title="␣foo")

This line should be green ([title^=caret] matches title="caret")

This line should be green ([title^=""] does not match title="")

This line should be green ([title^=""] does not match title="foo")

This line should be green ([title^=""] does not match title="␣foo")

This line should be green ([title*=star] matches title="star")

This line should be green ([title*=""] does not match title="")

This line should be green ([title*=""] does not match title="foo")

This line should be green ([title*=""] does not match title="␣")

This line should be green ([title$=dollar] matches title="dollar")

This line should be green ([title$=""] does not match title="")

This line should be green ([title$=""] does not match title="foo")

This line should be green ([title$=""] does not match title="foo␣")