Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body style="font-family: ahem; -webkit-font-smoothing: none;"> | 3 <body style="font-family: ahem; -webkit-font-smoothing: none;"> |
| 4 <!-- Test passes if A (blue box) in first line, followed by B (green box) in nex t line. --> | 4 <!-- Test passes if A (blue box) in first line, followed by B (green box) in nex t line. --> |
| 5 <style> | 5 <style> |
| 6 span:before { | 6 span:before { |
| 7 display: block; | 7 display: block; |
| 8 content: "A"; | 8 content: "A"; |
| 9 color: blue; | 9 color: blue; |
| 10 } | 10 } |
| 11 </style> | 11 </style> |
| 12 <span style="color: green"><div></div>B</span> | 12 <span style="color: green"><div></div>B</span> |
| 13 <script> | 13 <script> |
| 14 document.body.style.fontSize = "200px"; | 14 document.body.style.fontSize = "200px"; |
| 15 </script> | 15 </script> |
| 16 </body> | 16 </body> |
| 17 </html> | 17 </html> |
| OLD | NEW |