(parent, child)
| 26793 | } |
| 26794 | |
| 26795 | function inheritStyle(parent, child) { |
| 26796 | if (parent && parent.__inheritedStyle) { |
| 26797 | if (!child.__inheritedStyle) { |
| 26798 | child.__inheritedStyle = {}; |
| 26799 | } |
| 26800 | defaults(child.__inheritedStyle, parent.__inheritedStyle); |
| 26801 | } |
| 26802 | } |
| 26803 | |
| 26804 | function parsePoints(pointsString) { |
| 26805 | var list = trim(pointsString).split(DILIMITER_REG); |
no test coverage detected