Failure Example 2

In the example below the background color is defined on the CSS stylesheet, however the foreground color is not defined. Therefore, the example fails the Success Criterion.
	...
	    <style type="text/css">
	        body {background-color:white}
	    </style>
	</head>
	<body>
	    <p>My background is white.</p>
	</body>
F24: Failure of SC 1.4.1 due to specifying foreground colors without specifying background colors or vice versa

My background is white.