Testing Statement #10 of Section 6.3 of CSS1 Spec

PASS CRITERIA:

If statement #10 above is passed, then:

This h3 heading should have a color of ? The rule appleid is "#id1 {color: rgb(50,50,50)}", which has "rgb" followed by a list of three integer values between 0 and 255 enclosed in parentheses.

This h3 heading should also have a color of ? just like the heading above. The rule applied is "#id2 {color: rgb( 50 , 50 , 50 )}", which has whitespace around the integers.

This h3 heading should have a color of ?? The rule applied is "#id3 {color: rgb(50%,50%,50%)}", which has "rgb" followed by a list of three percentage values between 0 and 100 enclosed in parentheses.

This h3 heading should have a color of ?. The rule stated is "#id4 {color: rgb(50%,50,50%)}", which mixes integers and percentage values, so should be ignored.