gecko-dev/layout/reftests/scoped-style/scoped-style-003.html

15 строки
185 B
HTML

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