inliner.js
[app.webkitpdf] / inliner.js
1
2
3
4 function(){
5     
6     var camelize = function(a,b){
7         return b.toUpperCase();
8     }
9     
10     var fetchStyle = function(dom)
11     {
12         var style;
13         var returns = {};
14         
15         style = window.getComputedStyle(dom, null);
16         for(var i=0;i<style.length;i++){
17             var prop = style[i];
18             var camel = prop.replace(/\-([a-z])/g, camelize);
19             var val = style.getPropertyValue(prop);
20             returns[camel] = val;
21         }
22         return returns;
23     }
24         
25          
26 }
27     
28 })();