gecko/layout/reftests/scoped-style/scoped-style-important-001.html

15 lines
194 B
HTML
Raw Normal View History

<!DOCTYPE html>
<body>
<p>First</p>
<p>
<style scoped>
p { color: red }
</style>
Second
</p>
<p>Third</p>
<style>
p { color: blue !important }
</style>
</body>