Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix up script and layout. | Bobby Holley | 2017-05-02 | 1 | -2/+3 |
| | |||||
* | Propagate quirks mode all the way to ParserContext | Anthony Ramine | 2017-04-27 | 1 | -1/+2 |
| | | | | The quirks mode is still not properly propagated in geckolib. | ||||
* | Auto merge of #16407 - jdm:style_panic, r=emilio | bors-servo | 2017-04-13 | 1 | -4/+1 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow loading multiple stylesheets for the same link element. - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #16399 - [x] There are tests for these changes <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16407) <!-- Reviewable:end --> | ||||
| * | Allow loading multiple stylesheets for the same link element. | Josh Matthews | 2017-04-13 | 1 | -4/+1 |
| | | |||||
* | | Bug 1325878: Pass the MediaList down to Servo, making <style media> work. ↵ | Emilio Cobos Álvarez | 2017-04-12 | 1 | -2/+2 |
| | | | | | | | | | | | | | | r=xidorn MozReview-Commit-ID: BUCSQJs2CNI Signed-off-by: Emilio Cobos Álvarez <emilio@crisal.io> | ||||
* | | Bug 1325878: Don't use nsMediaList for loading imports. r=xidorn | Emilio Cobos Álvarez | 2017-04-12 | 1 | -4/+4 |
|/ | | | | | MozReview-Commit-ID: HR23bqZcmcA Signed-off-by: Emilio Cobos Álvarez <emilio@crisal.io> | ||||
* | Use final url for updating stylesheet from @import rule. | Xidorn Quan | 2017-04-03 | 1 | -0/+1 |
| | |||||
* | Use a UrlExtraData type alias to unify url handling logic. | Xidorn Quan | 2017-04-03 | 1 | -5/+2 |
| | |||||
* | Parse stylesheets without acquiring a shared lock. | Simon Sapin | 2017-03-19 | 1 | -3/+0 |
| | |||||
* | Remove some indirection. | Simon Sapin | 2017-03-19 | 1 | -12/+5 |
| | |||||
* | Refactor StylesheetLoader so impls do not need to acquire a shared lock. | Simon Sapin | 2017-03-19 | 1 | -25/+20 |
| | | | | | This fixes a deadlock: https://github.com/servo/servo/pull/16014#issuecomment-287527067 | ||||
* | Wrap most CSS rules in Locked<_> instead of RwLock<_> | Simon Sapin | 2017-03-19 | 1 | -9/+17 |
| | |||||
* | Replace RwLock<CssRules> with Locked<CssRules> | Simon Sapin | 2017-03-19 | 1 | -0/+2 |
| | |||||
* | Replace RwLock<MediaList> with shared_lock::Locked<MediaList> | Simon Sapin | 2017-03-19 | 1 | -0/+2 |
| | |||||
* | fix issue #15101 and make sure out-of-order stylesheet loads work correctly ↵ | SwagColoredKitteh | 2017-01-24 | 1 | -18/+30 |
| | | | | for the same element | ||||
* | Support origins in CSSOM stylesheets | Nazım Can Altınova | 2017-01-20 | 1 | -1/+17 |
| | |||||
* | Handle crossorigin in link and refactor crossorigin handling | mrnayak | 2017-01-13 | 1 | -5/+18 |
| | | | | | | | | Implemented Step three and handled step four of obtain the resource part of 4.2.4 The link element. Link to spec : https://html.spec.whatwg.org/multipage/semantics.html#concept-link-obtain Refactored crossOrigin handling in HTMLScriptElement, HTMLImageElement | ||||
* | Handle properly alternate stylesheet | charlesvdv | 2017-01-10 | 1 | -0/+3 |
| | |||||
* | Implement Subresource Integrity | mrnayak | 2017-01-08 | 1 | -2/+3 |
| | | | | | | | | | | | Implemented response validation part of https://w3c.github.io/webappsec-subresource-integrity/. Implemented step eighteen of the main fetch. If a request has integrity metadata, then following steps are performed *Wait for response body *If the response does not have a termination reason and response does not match request’s integrity metadata, set response to a network error.# Please enter the commit message for your changes. Lines starting | ||||
* | Interact with the originating document for stylesheet loads, rather than the ↵ | Josh Matthews | 2017-01-04 | 1 | -3/+6 |
| | | | | element's current document. | ||||
* | script: Abstract HTMLLinkElement and StyleElement into StylesheetOwner. | Emilio Cobos Álvarez | 2016-12-16 | 1 | -41/+32 |
| | |||||
* | script: Move the stylesheet loading code from htmllinkelement to ↵ | Emilio Cobos Álvarez | 2016-12-16 | 1 | -0/+254 |
stylesheet_loader. Make it track subresource loads properly. |