Mypal/layout/reftests/scoped-style/scoped-style-011.html
2019-03-11 13:26:37 +03:00

14 lines
165 B
HTML

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