Mypal/layout/reftests/scoped-style/scoped-style-002.html

15 lines
185 B
HTML

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