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

15 lines
191 B
HTML

<!DOCTYPE html>
<body>
<style>
p { color: blue }
</style>
<p>First</p>
<p id=a>
<style scoped>
#a { color: green }
</style>
Second
</p>
<p>Third</p>
</body>