| <title>Test for WebKit bug 31559: Crash with mismatched lists and shorthands.</title> |
| <script src="../js/resources/js-test-pre.js"></script> |
| <p id="description">Test for WebKit bug <a href="https://bugs.webkit.org/show_bug.cgi?id=31559">31559</a>: Crash with mismatched lists and shorthands.</p> |
| var para = document.getElementById('test'); |
| para.style.webkitTransition = 'width 1s, left 1s, top 1s'; |
| para.style.webkitTransitionProperty = 'width, left'; |
| shouldBeEqualToString("para.style.webkitTransition", "width 1s, left 1s, 1s"); |
| // Test shorter shorthand |
| para.style.webkitTransition = 'width 1s, left 1s'; |
| para.style.webkitTransitionProperty = 'width, left, top'; |
| // the next line will crash |
| shouldBeEqualToString("para.style.webkitTransition", "width 1s, left 1s, top"); |
| <script src="../js/resources/js-test-post.js"></script> |