OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 .test { | 5 .test { |
6 width: 100px; | 6 width: 100px; |
7 height: 100px; | 7 height: 100px; |
8 display: inline-block; | 8 display: inline-block; |
9 } | 9 } |
10 </style> | 10 </style> |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 debug("NOTE: If only few longhand properties are specified, getPropertyVal
ue for shorthand property returns null."); | 62 debug("NOTE: If only few longhand properties are specified, getPropertyVal
ue for shorthand property returns null."); |
63 var div10 = document.getElementById("-webkit-column-rule10"); | 63 var div10 = document.getElementById("-webkit-column-rule10"); |
64 shouldBe('div10.style.getPropertyValue("-webkit-column-rule")', "null"); | 64 shouldBe('div10.style.getPropertyValue("-webkit-column-rule")', "null"); |
65 | 65 |
66 var div11 = document.getElementById("-webkit-column-rule11"); | 66 var div11 = document.getElementById("-webkit-column-rule11"); |
67 shouldBe('div11.style.getPropertyValue("-webkit-column-rule")', "null"); | 67 shouldBe('div11.style.getPropertyValue("-webkit-column-rule")', "null"); |
68 | 68 |
69 var div12 = document.getElementById("-webkit-column-rule12"); | 69 var div12 = document.getElementById("-webkit-column-rule12"); |
70 shouldBe('div12.style.getPropertyValue("-webkit-column-rule")', "null"); | 70 shouldBe('div12.style.getPropertyValue("-webkit-column-rule")', "null"); |
71 </script> | 71 </script> |
72 <script src="../js/resources/js-test-post.js"></script> | |
73 </body> | 72 </body> |
74 </html> | 73 </html> |
OLD | NEW |