| <p>getPropertyValue('border') should not return a value for any property that doesn't have the same value for top, left, right and bottom, even if the values that differ are implicitly set by a shorthand. |
| var sheet = document.querySelector('style').sheet; |
| var expected = 'solid red'; |
| var actual = sheet.cssRules[0].style.getPropertyValue('border'); |
| document.getElementById('result').innerText = 'PASS'; |
| document.getElementById('result').innerText = 'FAIL: expected "' + expected + '", got "' + actual + '"'; |