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

12 lines
144 B
HTML

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