| OLD | NEW |
| 1 <script src="../js/resources/js-test-pre.js"></script> | 1 <script src="../../resources/js-test.js"></script> |
| 2 <script> | 2 <script> |
| 3 if (window.testRunner) | 3 if (window.testRunner) |
| 4 testRunner.dumpAsText(); | 4 testRunner.dumpAsText(); |
| 5 </script> | 5 </script> |
| 6 <style> | 6 <style> |
| 7 #test { | 7 #test { |
| 8 } | 8 } |
| 9 </style> | 9 </style> |
| 10 <body> | 10 <body> |
| 11 </body> | 11 </body> |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 result.push(style[shorthand]); | 62 result.push(style[shorthand]); |
| 63 style[shorthand] = "initial"; | 63 style[shorthand] = "initial"; |
| 64 result.push(style[shorthand]); | 64 result.push(style[shorthand]); |
| 65 return result.join(", "); | 65 return result.join(", "); |
| 66 } | 66 } |
| 67 | 67 |
| 68 for (var i = 0; i < shorthandNames.length; ++i) { | 68 for (var i = 0; i < shorthandNames.length; ++i) { |
| 69 shouldBeEqualToString("test('" + shorthandNames[i] + "')", "inherit, initial
"); | 69 shouldBeEqualToString("test('" + shorthandNames[i] + "')", "inherit, initial
"); |
| 70 } | 70 } |
| 71 </script> | 71 </script> |
| OLD | NEW |