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 keys = ['fontFamily','fontSize','fontWeight','fontStyle','color',
11         'textTransform','textDecoration','letterSpacing','wordSpacing',
12         'lineHeight','textAlign','verticalAlign','direction','backgroundColor',
13         'backgroundImage','backgroundRepeat','backgroundposition',
14         'backgroundAttachment','opacity','width','height','top','right','bottom',
15         'left','marginTop','marginRight','marginBottom','marginLeft',
16         'paddingTop','paddingRight','paddingBottom','paddingLeft',
17         'borderTopWidth','borderRightWidth','borderBottomWidth',
18         'borderLeftWidth','borderTopColor','borderRightColor',
19         'borderBottomColor','borderLeftColor','borderTopStyle',
20         'borderRightStyle','borderBottomStyle','borderLeftStyle','position',
21         'display','visibility','zIndex','overflowX','overflowY','whiteSpace',
22         'clip','float','clear','cursor','listStyleImage','listStylePosition',
23         'listStyleType','markerOffset'
24     ];
25     
26     var fillStyle = function(dom)
27     {
28         if (!dom || dom.nodeType != 1) {
29             return;
30         }
31         console.log(dom.nodeName);
32         
33         var style = window.getComputedStyle(dom, null);
34         if (style.display == 'none') {
35             dom.parentElement.removeChild(dom);
36             return;
37         }
38         
39         
40         
41         for(var i=0;i<keys.length;i++){
42             var prop = keys[i];
43             //var camel = prop.replace(/\-([a-z])/g, camelize);
44             var val = style.getPropertyValue(prop);
45             //returns[camel] = val;
46             dom.style[prop] = val;
47         }
48         for (var i = dom.childNodes.length -1; i--; i> -1) {
49             fillStyle(dom.childNodes[i]);
50         }
51         
52         
53         //return returns;
54     }
55     var el = document.querySelector('body');
56     fillStyle(el);
57     
58     //var matches = document.getElementsByTagName('style');
59     //for(var i =0;i < matches.length;i++) {
60     //    matches[i].parentElement.removeChild(matches[i]);
61     //}
62     
63      
64     
65 })();