tenfourfox/layout/reftests/scoped-style/scoped-style-important-003.html

15 lines
206 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<body>
<p>First</p>
<p>
<style scoped>
p { color: red !important }
</style>
Second
</p>
<p>Third</p>
<style>
p { color: green !important }
</style>
</body>