Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-color/background-color-hsl-003.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS-Color-4: support <angle> value for hsl()/hsla() hue component - test</title> <link rel="author" title="Jerry Shih" href="mailto:bignose1007@gmail.com" /> <link rel="author" title="Mozilla" href="http://www.mozilla.org/" /> <link rel="help" href="https://drafts.csswg.org/css-color-4/#the-hsl-notation" /> <meta name="assert" content="hsl()/hsla() hue component should support <angle> value." /> <link rel="match" href="background-color-hsl-003-ref.html" /> <style type="text/css"> #p1 { background-color: hsla(120, 75%, 50%, 0.2); } #p2 { background-color: hsla(120deg, 75%, 50%, 0.4); } #p3 { background-color: hsla(133.33333333grad, 75%, 50%, 0.6); } #p4 { background-color: hsla(2.0943951024rad, 75%, 50%, 0.8); } #p5 { background-color: hsla(0.3333333333turn, 75%, 50%, 1.0); } #p6 { background-color: hsl(240, 75%, 50%); } #p7 { background-color: hsl(600deg, 75%, 50%); } #p8 { background-color: hsl(1066.66666666grad, 75%, 50%); } #p9 { background-color: hsl(10.4719755118rad, 75%, 50%); } #p10 { background-color: hsl(2.6666666666turn, 75%, 50%); } </style> </head> <body> <p id="p1">color</p> <p id="p2">color</p> <p id="p3">color</p> <p id="p4">color</p> <p id="p5">color</p> <p id="p6">color</p> <p id="p7">color</p> <p id="p8">color</p> <p id="p9">color</p> <p id="p10">color</p> </body> </html>
/css/css-color/background-color-hsl-003-ref.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS-Color-4: support <angle> value for hsl()/hsla() hue component - ref</title> <link rel="author" title="Jerry Shih" href="mailto:bignose1007@gmail.com" /> <link rel="author" title="Mozilla" href="http://www.mozilla.org/" /> <style type="text/css"> #p1 { background-color: hsla(120, 75%, 50%, 0.2); } #p2 { background-color: hsla(120.0, 75%, 50%, 0.4); } #p3 { background-color: hsla(1.2e2, 75%, 50%, 0.6); } #p4 { background-color: hsla(120, 75%, 50%, 0.8); } #p5 { background-color: hsla(120, 75%, 50%, 1.0); } #p6 { background-color: hsl(240, 75%, 50%); } #p7 { background-color: hsl(600.0, 75%, 50%); } #p8 { background-color: hsl(9.6e2, 75%, 50%); } #p9 { background-color: hsl(600, 75%, 50%); } #p10 { background-color: hsl(240, 75%, 50%); } </style> </head> <body> <p id="p1">color</p> <p id="p2">color</p> <p id="p3">color</p> <p id="p4">color</p> <p id="p5">color</p> <p id="p6">color</p> <p id="p7">color</p> <p id="p8">color</p> <p id="p9">color</p> <p id="p10">color</p> </body> </html>