gecko/layout/reftests/scoped-style/scoped-style-media.html
2013-01-09 10:25:49 +11:00

17 lines
242 B
HTML

<!DOCTYPE html>
<body>
<p>First</p>
<p>
<style scoped>
@media not all {
p { text-decoration: underline }
}
@media all {
p { color: blue }
}
</style>
Second
</p>
<p>Third</p>
</body>