This works:
:-webkit-full-screen {
...
}
And so does this:
:-moz-full-screen {
...
}
But when I do this, the styles don't get applied in Chrome or Firefox:
:-webkit-full-screen, :-moz-full-screen {
...
}
How do I target both?