I'm using the fullscreen api and the default color for the border is black as seen in this image:
Image is from http://blogs.sitepointstatic.com/examples/tech/full-screen/index2.html.
I would like to change this background color to a different color. Assuming the div has id #content, I've tried using
#content::backdrop {
background-color: red;
}
but this did not work for me.
How do I change the color?