Loading of css is blocked if hostname is not fully qualified
Posted: Wed May 30, 2012 2:30 pm
Inside a web page I have the following snippet:
The referenced page standard.css looks like this:
After upgrading the noscript plugin (version 2.4.3) within Firfefox ESR 10.0.4 the css pages standard.css, standard2.css and standard3.css are not loaded anymore. With an earlier version of noscript everything worked as expected.
This behaviour only occurs if I use a short URL (https://hostname/...). If I use a fully qualified URL (https://hostname.mynet.com/...) all css files are loaded.
Why is noscript blocking this? Is there a known security problem?
Code: Select all
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<base href="https://XXXXX /">
<title>Example</title>
<link href="Layout/standard.css" type="text/css" title="Example" rel="stylesheet">
</head>
<body>Code: Select all
@import url( "standard2.css" );
@import url( "standard3.css" );This behaviour only occurs if I use a short URL (https://hostname/...). If I use a fully qualified URL (https://hostname.mynet.com/...) all css files are loaded.
Why is noscript blocking this? Is there a known security problem?