| OLD | NEW |
| 1 <script> | 1 <script> |
| 2 function CSS(domAgent) { | 2 function CSS(domAgent) { |
| 3 this.domAgent_ = domAgent; | 3 this.domAgent_ = domAgent; |
| 4 } | 4 } |
| 5 | 5 |
| 6 CSS.prototype.enable = function() { | 6 CSS.prototype.enable = function() { |
| 7 }; | 7 }; |
| 8 | 8 |
| 9 CSS.prototype.getInlineStylesForNode = function(params) { | 9 CSS.prototype.getInlineStylesForNode = function(params) { |
| 10 return { | 10 return { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 computedStyles.push({ | 40 computedStyles.push({ |
| 41 "name": name, | 41 "name": name, |
| 42 "value": style.getPropertyValue(name), | 42 "value": style.getPropertyValue(name), |
| 43 }); | 43 }); |
| 44 } | 44 } |
| 45 return { | 45 return { |
| 46 "computedStyle": computedStyles, | 46 "computedStyle": computedStyles, |
| 47 } | 47 } |
| 48 } | 48 } |
| 49 | 49 |
| 50 this.exports = CSS; | 50 module.exports = CSS; |
| 51 </script> | 51 </script> |
| OLD | NEW |