OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 #inspected:before { | 4 #inspected:before, .some-other-selector { |
5 content: "BEFORE"; | 5 content: "BEFORE"; |
6 } | 6 } |
7 | 7 |
8 #inspected:after { | 8 #inspected:after { |
9 content: "AFTER"; | 9 content: "AFTER"; |
10 } | 10 } |
11 </style> | 11 </style> |
12 <style> | 12 <style> |
13 #empty::before { | 13 #empty::before { |
14 content: "EmptyBefore"; | 14 content: "EmptyBefore"; |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 Tests that pseudo elements and their styles are handled properly. | 238 Tests that pseudo elements and their styles are handled properly. |
239 </p> | 239 </p> |
240 | 240 |
241 <div id="container"> | 241 <div id="container"> |
242 <div id="inspected">Text</div> | 242 <div id="inspected">Text</div> |
243 <div id="empty"></div> | 243 <div id="empty"></div> |
244 </div> | 244 </div> |
245 | 245 |
246 </body> | 246 </body> |
247 </html> | 247 </html> |
OLD | NEW |