| Index: LayoutTests/css3/calc/transitions.html | 
| diff --git a/LayoutTests/css3/calc/transitions.html b/LayoutTests/css3/calc/transitions.html | 
| index 433b67f57f3935bf969cbe886a4474880728349e..c059abb6bb013238af9fa11e01d6765d3913b6b6 100644 | 
| --- a/LayoutTests/css3/calc/transitions.html | 
| +++ b/LayoutTests/css3/calc/transitions.html | 
| @@ -44,7 +44,7 @@ This tests that transitions containing calc() expressions transition correctly. | 
| </div> | 
| <div id="result"></div> | 
|  | 
| -<script src="../../transitions/resources/transition-test-helpers.js"></script> | 
| +<script src="../../animations/resources/animation-test-helpers.js"></script> | 
| <script> | 
|  | 
| const tests = ["startCalcEndCalc", "startPxEndCalc", "startPercentEndCalc", "startCalcEndPx", "startCalcEndPercent"]; | 
| @@ -64,9 +64,9 @@ function initialize(id) | 
| var element = document.getElementById(id); | 
| var width = element.offsetWidth; | 
| if (width == expectedStartWidth) | 
| -        element.innerHTML += 'PASS - "width" property for "' + id +'" element at 0.0s was: ' + width; | 
| +        result += 'PASS - "width" property for "' + id +'" element at 0.0s was: ' + width + '<br>'; | 
| else | 
| -        element.innerHTML += 'FAIL  - "width" property for "' + id +'" element at 0.0s expected: ' + expectedStartWidth + ' but saw: ' + width; | 
| +        result += 'FAIL  - "width" property for "' + id +'" element at 0.0s expected: ' + expectedStartWidth + ' but saw: ' + width + '<br>'; | 
|  | 
| element.className += " go"; | 
| } | 
|  |