aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/stylesheet_loader.rs
Commit message (Expand)AuthorAgeFilesLines
...
* Use a UrlExtraData type alias to unify url handling logic.Xidorn Quan2017-04-031-5/+2
* Parse stylesheets without acquiring a shared lock.Simon Sapin2017-03-191-3/+0
* Remove some indirection.Simon Sapin2017-03-191-12/+5
* Refactor StylesheetLoader so impls do not need to acquire a shared lock.Simon Sapin2017-03-191-25/+20
* Wrap most CSS rules in Locked<_> instead of RwLock<_>Simon Sapin2017-03-191-9/+17
* Replace RwLock<CssRules> with Locked<CssRules>Simon Sapin2017-03-191-0/+2
* Replace RwLock<MediaList> with shared_lock::Locked<MediaList>Simon Sapin2017-03-191-0/+2
* fix issue #15101 and make sure out-of-order stylesheet loads work correctly f...SwagColoredKitteh2017-01-241-18/+30
* Support origins in CSSOM stylesheetsNazım Can Altınova2017-01-201-1/+17
* Handle crossorigin in link and refactor crossorigin handlingmrnayak2017-01-131-5/+18
* Handle properly alternate stylesheetcharlesvdv2017-01-101-0/+3
* Implement Subresource Integritymrnayak2017-01-081-2/+3
* Interact with the originating document for stylesheet loads, rather than the ...Josh Matthews2017-01-041-3/+6
* script: Abstract HTMLLinkElement and StyleElement into StylesheetOwner.Emilio Cobos Álvarez2016-12-161-41/+32
* script: Move the stylesheet loading code from htmllinkelement to stylesheet_l...Emilio Cobos Álvarez2016-12-161-0/+254