Status: PASS | Duration: 9ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-color/deprecated-sameas-002.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Color 4: deprecated system colors</title> <link rel="author" title="Chris Lilley" href="mailto:chris@w3.org"> <link rel="help" href="https://drafts.csswg.org/css-color-4/#deprecated-system-colors"> <link rel="match" href="deprecated-sameas-Canvas-ref.html"> <meta name="assert" content="Same as Canvas"> <style> .test { background-color: red; width: 12em; height: 6em; } .ref { background-color: Canvas; width: 12em; height: 6em; } @supports (color: ActiveCaption) { .test { background-color: ActiveCaption; } } </style> <body> <p>Test passes if you see a square, not two rectangles of different colors; and no red.</p> <div class="test"></div> <div class="ref"></div> </body>
/css/css-color/deprecated-sameas-Canvas-ref.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Color 4: deprecated system colors</title> <style> .ref { background-color: Canvas; width: 12em; height: 12em; } </style> <body> <p>Test passes if you see a square, not two rectangles of different colors; and no red.</p> <div class="ref"></div> </body>