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

branch
TOR_BUG_9701
changeset 10
ac0c01689b40
equal deleted inserted replaced
-1:000000000000 0:23822085ea88
1 <!DOCTYPE html>
2 <body>
3 <style>
4 p { color: blue }
5 </style>
6 <p>First</p>
7 <p>
8 <style scoped>
9 p { color: green }
10 </style>
11 Second
12 </p>
13 <p>Third</p>
14 </body>

mercurial