I want to change content of SWT Browser (some webpage deefined by user), before it will'be shown to the user. When I say change, I mean add few css/js files to html code.
I tried to use ProgressListener for this purposes (I get all code with getText(), do some changes and apply with setText() method), but found that in this case, all other resources, defined without absolute pathes are no more available.
It happens, because after setText() browser is setting page to about:blank. So, I have all code, but all css/js/img defined with relative pathes are no more available.
Is it possible to add few lines of css/js definitions and not to loos all resource defined without relative pathes?
Thanks in advance!
