| OLD | NEW |
| 1 <script src="../fast/js/resources/js-test-pre.js"></script> | 1 <script src="../fast/js/resources/js-test-pre.js"></script> |
| 2 | 2 |
| 3 <style> | 3 <style> |
| 4 #paragraph { | 4 #paragraph { |
| 5 width: 10em; | 5 width: 10em; |
| 6 } | 6 } |
| 7 #paragraph:before { | 7 #paragraph:before { |
| 8 content: ' One two three\A four five '; | 8 content: ' One two three\A four five '; |
| 9 } | 9 } |
| 10 #paragraph:after { | 10 #paragraph:after { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 var axInlineTextBox = axStaticText.childAtIndex(j); | 32 var axInlineTextBox = axStaticText.childAtIndex(j); |
| 33 var inlineText = axInlineTextBox.stringValue.substr(9); | 33 var inlineText = axInlineTextBox.stringValue.substr(9); |
| 34 concatenatedInlineText += inlineText; | 34 concatenatedInlineText += inlineText; |
| 35 } | 35 } |
| 36 | 36 |
| 37 shouldBe('text', 'concatenatedInlineText'); | 37 shouldBe('text', 'concatenatedInlineText'); |
| 38 } | 38 } |
| 39 } | 39 } |
| 40 </script> | 40 </script> |
| 41 | 41 |
| 42 <script src="../fast/js/resources/js-test-post.js"></script> | |
| OLD | NEW |