Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/mediaqueries/mq-deprecated-001.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>Test: deprecated media types</title>
<link rel="help" href="https://drafts.csswg.org/mediaqueries-4/#ref-for-media-type%E2%91%A0%E2%91%A6">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="deprecated media types must not match">
<style>
div {
width: 100px;
height: 100px;
background-color: green;
}
@media
tty,
tv,
projection,
handheld,
braille,
embossed,
aural,
speech
{
div { background-color: red; }
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.
<div></div>