HTTP & Client-Server Model: Difference between revisions

From Elvanör's Technical Wiki
Jump to navigation Jump to search
(Created page with "= Fetching queue = * Chromium supports a new HTML semantic that allows the browser to download with high priority q given resource: <link rel="subresource" href="jquery.js"> ...")
 
 
Line 1: Line 1:
= Fetching queue =
= Fetching queue =


* Chromium supports a new HTML semantic that allows the browser to download with high priority q given resource:
* Chromium supports a new HTML semantic that allows the browser to download with high priority a given resource:


  <link rel="subresource" href="jquery.js">
  <link rel="subresource" href="jquery.js">


* Unfortunately, its support is completely broken currently (see https://code.google.com/p/chromium/issues/detail?id=312327) and results in a double download (!). And all the other browsers don't implement it.
* Unfortunately, its support is completely broken currently (see https://code.google.com/p/chromium/issues/detail?id=312327) and results in a double download (!). And all the other browsers don't implement it.

Latest revision as of 08:38, 28 August 2014

Fetching queue

  • Chromium supports a new HTML semantic that allows the browser to download with high priority a given resource:
<link rel="subresource" href="jquery.js">