| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>Bug 12145: Illegal color Syntax rendered (quirks mode)</title> | 3 <title>Bug 12145: Illegal color Syntax rendered (quirks mode)</title> |
| 4 <style type="text/css"> | 4 <style type="text/css"> |
| 5 .example { color: ff0000 } | 5 .example { color: ff0000 } |
| 6 .example2 { color: 0000ff } | 6 .example2 { color: 0100ff } |
| 7 </style> | 7 </style> |
| 8 </head> | 8 </head> |
| 9 <body> | 9 <body> |
| 10 <p class="example">this should be red</p> | 10 <p class="example">this should be red</p> |
| 11 <p class="example2">this should be blue</p> | 11 <p class="example2">this should be blue</p> |
| 12 </body> | 12 </body> |
| 13 </html> | 13 </html> |
| OLD | NEW |