| OLD | NEW |
| (Empty) |
| 1 Tests that properties with WebKit vendor-specific prefixes ("-apple-", "-webkit-
", and "-khtml-") are treated the same as those without the prefix. | |
| 2 | |
| 3 Text | |
| 4 [expanded] | |
| 5 display: block; | |
| 6 div - block user agent stylesheet | |
| 7 opacity: 1; | |
| 8 #inspected - 1 vendor-prefixes.html:4 | |
| 9 | |
| 10 [expanded] | |
| 11 element.style { () | |
| 12 | |
| 13 ======== Matched CSS Rules ======== | |
| 14 [expanded] | |
| 15 #inspected { (vendor-prefixes.html:11) | |
| 16 /-- overloaded --/ -apple-opacity: 0.75; | |
| 17 | |
| 18 [expanded] | |
| 19 #inspected { (vendor-prefixes.html:4) | |
| 20 /-- overloaded --/ -apple-opacity: 0.35; | |
| 21 /-- overloaded --/ -webkit-opacity: 0.5; | |
| 22 opacity: 1; | |
| 23 /-- overloaded --/ -khtml-opacity: 0.25; | |
| 24 | |
| 25 [expanded] | |
| 26 div { (user agent stylesheet) | |
| 27 display: block; | |
| 28 | |
| 29 | |
| 30 | |
| OLD | NEW |