Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / error-in-last-decl.html
blobbe7a529a994cf068f8a13aa5e14ae185aa88ebc1
1 <html>
2 <head>
3 <style>
4 #id1 {
5 color:green;
6 *background:black
9 #id2 {color:green;}
10 </style>
11 <style>
12 #id3 {
13 *background:black
16 #id3 {color:green;}
17 </style>
18 </head>
20 <body>
21 <p>test for <a href="https://bugs.webkit.org/show_bug.cgi?id=7157">bug 7157</a>:
22 An asterisk in a CSS property name breaks CSS handling (Many layout problems at letras.terra.com.br)</p>
24 <p id="id1">Should be green on white.</p>
25 <p id="id2">Should be green on white.</p>
26 <p id="id3">Should be green on white.</p>
28 </body>
29 </html>