Mis012
Mis012
hmm, it seems I'm able to change the rendered "bgcolor"... so it does *something*
probably an issue with `ignoring unrequested stream`
Ok, got it to work to a point where the last needed hack is this: ```diff diff --git a/src/ppb_url_loader.c b/src/ppb_url_loader.c index 9690d83..8f930f9 100644 --- a/src/ppb_url_loader.c +++ b/src/ppb_url_loader.c @@ -241,10 +241,12...
ok, I have figured out the issue there is a race condition, if the NPAPI "browser" doesn't stream the file fast enough (ideally in one call to Write), it seems...
if I stream the file in one go like this: ```C FILE *pp; char buffer[1977354]; pp = fopen(filename,"rb"); int len; while((len=fread(buffer, 1, sizeof(buffer), pp)) != 0) { pluginFuncs.writeready(instance, stream); pluginFuncs.write(instance,...
no difference unfortunately :(
I can reproduce this issue as well ;)
@PureTryOut I have no Rust experience, but this compiles: let boxed = self.type_id(); -- vvv --- let boxed = Any::type_id(self);
because there is FreeJ2ME, which implements J2ME ABIs and allows me to run J2ME apps on Linux without any overhead. the chance that anyone will ever reimplement android ABIs in...
seems to work well enough, thanks --- > Anyhow, we don't really work with Firefox and we emphasize using Chromium instead. considering the ever shrinking firefox usebase, I think at...