Local HTML not rendering CSS from internet on Firefox -


i have weird issue

i generate html has references following

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css"/>  <link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/tables-min.css"/>  <script src="http://code.jquery.com/jquery-1.11.3.min.js"/>  <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"/> 

this html being generated via xslt , stored in local disk

when html opened (ex: c:\temp) in

  • ie 11 --> prompts "enable blocked content" , upon clicking "allow" html rendered correctly
  • firefox esr 38.6.0 / chrome 48.0.2564.97 m (64-bit) --> html not rendering correctly , none of css / js being applied

in firefox console see following

ns_error_failure: component returned failure code: 0x80004005 (ns_error_failure) [nsitaskbartabpreview.invalidate] windowspreviewpertab.jsm:406:0 syntaxerror: illegal character ga.js:2:0 use of getpreventdefault() deprecated.  use defaultprevented instead. jquery.min.js:3:0 no element found d0d6:1:1 syntaxerror: illegal character analytics.js:2:0 syntaxerror: illegal character jquery-1.11.3.js:1:0 syntaxerror: illegal character jquery.mobile-1.4.5.js:1:0 ns_error_failure: component returned failure code: 0x80004005 (ns_error_failure) [nsitaskbartabpreview.invalidate] windowspreviewpertab.jsm:406:0 syntaxerror: illegal character jquery-1.11.3.js:1:0 syntaxerror: illegal character jquery.mobile-1.4.5.js:1:0 ns_error_failure: component returned failure code: 0x80004005 (ns_error_failure) [nsitaskbartabpreview.invalidate] 

as can see directly consuming css & js respective websites

any idea how can working in firefox?


Comments