Closed
Bug 2765
Opened 26 years ago
Closed 25 years ago
shouldn't load all alternate stylesheets before displaying
Categories
(Core :: CSS Parsing and Computation, defect, P2)
Tracking
()
VERIFIED
FIXED
M6
People
(Reporter: dbaron, Assigned: peterl-retired)
References
()
Details
You currently display the document without any stylesheets, then load all
stylesheets, whether used or not, and then reflow when they are all loaded. It
would probably be better to load the ones that are to be used first, and then
(if you want) pre-load the alternates. It's very slow to load 3 stylesheets
when you only need one.
Additionally, if you start loading another link while the stylesheets are
loading, the stylesheet loading should be stopped. It isn't.
(I do like the idea of displaying first without the stylesheet. And yes, I am
currently testing over a modem.)
Reporter | ||
Comment 2•26 years ago
|
||
Actually, I think you shouldn't load alternate stylesheets until they are
requested, for the following reasons:
1) It uses bandwidth
2) It messes up hit-counting, which drives webmasters crazy
3) It slows down anything else the user may be doing (telnet, etc.)
4) Because of (3), it discourages the use of alternate stylesheets.
Updated•26 years ago
|
QA Contact: 4110
Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Target Milestone: M4 → M5
Comment 3•26 years ago
|
||
Assignee | ||
Updated•26 years ago
|
Target Milestone: M5 → M6
Assignee | ||
Updated•25 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 5•25 years ago
|
||
We now defer loading alternate sheets until all other sheets have loaded.
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 6•25 years ago
|
||
Verified fixed using 6/14 Apprunner. Stylesheets loading is immediate.
You need to log in
before you can comment on or make changes to this bug.
Description
•