aboutsummaryrefslogtreecommitdiffstats
path: root/components
Commit message (Collapse)AuthorAgeFilesLines
* Auto merge of #14249 - vvuk:wr-record, r=kvarkbors-servo2016-11-182-1/+10
|\ | | | | | | | | | | | | | | | | | | | | Add -Z wr-record This adds `-Z wr-record`, which flips `enable_recording` to true for Webrender. <!-- 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/14249) <!-- Reviewable:end -->
| * Add -Z wr-recordVladimir Vukicevic2016-11-162-1/+10
| |
* | Auto merge of #14246 - emilio:servo-url, r=SimonSapinbors-servo2016-11-17124-559/+837
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Urlmageddon <!-- Please describe your changes on the following line: --> Still needs a bunch of code in net to be converted in order to get more advantage of this for images and stuff, but meanwhile this should help quite a bit with #13778. Still wanted to get this in. r? @SimonSapin <!-- 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/14246) <!-- Reviewable:end -->
| * | Urlmageddon: Use refcounted urls more often.Emilio Cobos Álvarez2016-11-17124-559/+837
| | |
* | | Auto merge of #13917 - Wafflespeanut:keywords, r=Manishearthbors-servo2016-11-174-209/+150
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove usage of 'keyword_list' <!-- Please describe your changes on the following line: --> We're using `keyword_list` to generate code for some of the animation properties. This could be achieved with `single_keyword` (passing `vector=True`). --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach build-geckolib` does not report any errors <!-- Either: --> - [x] These changes do not require tests because it's a cleanup <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> r? @emilio <!-- 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/13917) <!-- Reviewable:end -->
| * | | Remove Mako helper: keyword_listRavi Shankar2016-11-171-73/+0
| | | |
| * | | Remove usage of keyword_list (and prefer single_keyword)Ravi Shankar2016-11-174-136/+150
| | | |
* | | | Auto merge of #14214 - bholley:dirtiness_overhaul, r=emiliobors-servo2016-11-1712-183/+192
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Overhaul dirtiness handling in Servo to prepare for the new incremental restyle architecture <!-- 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/14214) <!-- Reviewable:end -->
| * | | | Prevent nodes from having DIRTY_DESCENDANTS set by default.Bobby Holley2016-11-171-2/+5
| | | | |
| * | | | Eliminate HAS_CHANGED in favor of explicit RestyleDamage.Bobby Holley2016-11-165-36/+18
| | | | |
| * | | | Track all node damage with PendingRestyles.Bobby Holley2016-11-165-44/+68
| | | | |
| * | | | Expand the role of modified_elements to include explicit restyle hints and ↵Bobby Holley2016-11-155-27/+93
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | damage. This will take the place of setting IS_DIRTY and HAS_CHANGED.
| * | | | Remove TDocument from the style and layout crates.Bobby Holley2016-11-146-88/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The style system never actually does anything with the document. This allows us to remove a bunch of stubbing on the Gecko side and streamline some things on the Servo side in future patches.
* | | | | Auto merge of #14096 - ↵bors-servo2016-11-1728-225/+273
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fflorent:11485-make-dom-methods-taking-mut-JSContent-unsafe, r=nox 11485 make dom methods taking mut js content unsafe This is a rebased version of PR #11595 --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #11485 <!-- Either: --> - [ ] There are tests for these changes OR - [x] These changes do not require tests because: no code logic was changed <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- 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/14096) <!-- Reviewable:end -->
| * | | | | script creates methods taking '*mut JSContext' unsafeAbelardo E. Mendoza2016-11-1428-225/+273
| | | | | | | | | | | | | | | | | | | | | | | | rebase + marked the necessary new code as unsafe
* | | | | | Auto merge of #14223 - Manishearth:fix-logical-cascade, r=emiliobors-servo2016-11-162-5/+27
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Delegate logical bitfield setters to physical to fix cascade (fixes #14222) Five minutes early for "tomorrow", _shrug_. I'm not entirely sure of this fix. It depends on properties going through the cascade in source order all else being the same. I think that's the case. Fixes wikipedia though. r? @emilio or @SimonSapin <!-- 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/14223) <!-- Reviewable:end -->
| * | | | | Delegate logical bitfield setters to physical to fix cascade (fixes #14222)Manish Goregaokar2016-11-142-5/+27
| | | | | |
* | | | | | Auto merge of #14172 - servo:ports, r=jdmbors-servo2016-11-168-3774/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move the servo binary to ports. <!-- 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/14172) <!-- Reviewable:end -->
| * | | | | | Move the servo binary to ports.Ms2ger2016-11-168-3774/+2
| | | | | | |
* | | | | | | Auto merge of #14190 - Manishearth:cssom, r=SimonSapinbors-servo2016-11-1634-51/+878
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Immutable CSSOM This PR is intended to add basic support for all CSSOM interfaces, with the ability to index `document.styleSheets` and css rule lists, and serializing individual css rules. Handling individual interface methods for CSSRule subclasses can probably be done with easy/medium bugs. Mutation safety isn't dealt with here; if the css rule list is mutated the CSSOM will be in an inconsistent state. I intend to deal with this via zero sized tokens, see https://groups.google.com/forum/#!topic/mozilla.dev.servo/AnxJoVmtMXQ . I'll handle that when I start making the CSSOM mutable. (Getting the immutable bit landed first opens this up for easy bugs) This doesn't really change style aside from adding an extra arc in the CSS rule list as discussed in the linked thread. So far this same design can be used by stylo as well when the time comes. f? @SimonSapin @emilio cc @upsuper part of #11420 Todo: - [x] Stubs for rest of the CSSRule subclasses - [x] <s>ToCSS impls for CSSRules.</s> May make into easy bugs and stub out in this PR https://github.com/servo/servo/issues/14195 - [x] Cache CSSStyleSheet on the relevant node <!-- 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/14190) <!-- Reviewable:end -->
| * | | | | | | Allow mutation of CssRulesManish Goregaokar2016-11-153-8/+9
| | | | | | | |
| * | | | | | | Unexpose CSSOM interfacesManish Goregaokar2016-11-1514-14/+14
| | | | | | | |
| * | | | | | | Support basic immutable CSSOMManish Goregaokar2016-11-1529-39/+857
| | | | | | | |
| * | | | | | | Arc all Vec<CSSRule>s, put in CSSRules typeManish Goregaokar2016-11-153-10/+18
| | |_|_|_|_|/ | |/| | | | |
* | | | | | | Auto merge of #14188 - AgostonSzepessy:text-emphasis-position, r=SimonSapinbors-servo2016-11-161-0/+49
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added parsing/serialization for text-emphasis-position Implemented parsing/serialization for text-emphasis-position - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [ ] These changes fix #13850 - [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/14188) <!-- Reviewable:end -->
| * | | | | | Added parsing/serialization for text-emphasis-positionAgoston Szepessy2016-11-151-0/+49
| | | | | | |
* | | | | | | Auto merge of #14200 - mrobinson:display-list, r=<try>bors-servo2016-11-163-219/+93
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Deal with changes to the WebRender API <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [x] These changes do not require tests because they should not change behavior. <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> The WebRender display list is now similar to the Servo display list, which simplifies the conversion. <!-- 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/14200) <!-- Reviewable:end -->
| * | | | | | | Deal with changes to the WebRender APIMartin Robinson2016-11-153-219/+93
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The WebRender display list is now similar to the Servo display list, which simplifies the conversion.
* | | | | | | | Storage notifications routed via the constellation.Alan Jeffrey2016-11-155-27/+66
| |_|/ / / / / |/| | | | | |
* | | | | | | Regenerate bindings.Cameron McCormack2016-11-153-1566/+1296
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bindings update corresponding to https://hg.mozilla.org/incubator/stylo/rev/88d68e17f03c
* | | | | | | Auto merge of #14220 - heycam:bindings-update-5, r=Manishearthbors-servo2016-11-153-2135/+2465
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Regenerate bindings. <!-- Please describe your changes on the following line: --> r? @Manishearth --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> Bindings update for https://hg.mozilla.org/incubator/stylo/rev/00ef34eaec71e51237465ff06b5dd5b91e2f41e4 <!-- 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/14220) <!-- Reviewable:end -->
| * | | | | | Regenerate bindings.Cameron McCormack2016-11-153-2135/+2465
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bindings update for https://hg.mozilla.org/incubator/stylo/rev/00ef34eaec71e51237465ff06b5dd5b91e2f41e4
* | | | | | | Auto merge of #14165 - servo:jdm-patch-1, r=noxbors-servo2016-11-145-4/+14
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Supress panics for ProfilerChan sends. This should address #14161. <!-- 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/14165) <!-- Reviewable:end -->
| * | | | | | Supress panics for ProfilerChan sends.Josh Matthews2016-11-145-4/+14
| | | | | | |
* | | | | | | Auto merge of #13641 - emilio:rayon-style, r=pcwaltonbors-servo2016-11-1413-520/+110
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use rayon to drive parallel layout and styling. <!-- Please describe your changes on the following line: --> The current work queue had a really annoying constraint: The size of the node had to be the size of the work unit data. This makes it impractical for the new restyling model where we plan to pass down a bunch of data. Rayon by default makes you wait for the result of the work unit, which makes it impractical for the current model (it's mostly sequential). I added an API to rayon that allows us to push work to the queue without waiting (https://github.com/nikomatsakis/rayon/pull/103). This still needs some work (for example, we're loosing the memory reporting functionality), but I wanted feedback on this. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- 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/13641) <!-- Reviewable:end -->
| * | | | | | | style: Use rayon instead of our custom work queue.Emilio Cobos Álvarez2016-11-1413-520/+110
| | |_|_|_|/ / | |/| | | | |
* | | | | | | Auto merge of #14205 - szeged:minor-fixes, r=jdmbors-servo2016-11-143-14/+9
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Minor fixes for the WebBluetooth implementation <!-- Please describe your changes on the following line: --> 1. Fix for a comment typo in `bluetooth.rs `. 2. Simplify caling `self.request_bluetooth_devices` in `bluetooth.rs` in `Step 2`. We already have a check in `Step 1` to prevent calling `request_bluetooth_devices` with a `Some` value if `option.acceptAllDevices` is true, and `option.filters` is already an `Option`, so there is no need for the `None` in the else branch. 3. Updating the bluetooth extension in `Navigator.webidl `, to match the [specification](https://webbluetoothcg.github.io/web-bluetooth/#navigator-extensions). 4. Replace the `_` separating the characteristic property strings with `-` as described [here](http://git.kernel.org/cgit/bluetooth/bluez.git/tree/doc/gatt-api.txt#n142) --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- 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/14205) <!-- Reviewable:end -->
| * | | | | | Correcting bluetooth flag stringsZakor Gyula2016-11-141-4/+4
| | | | | | |
| * | | | | | Updating bluetooth in Navigator.webidlzakorgyula2016-11-141-4/+3
| | | | | | |
| * | | | | | Simplify RequestDevice function in bluetooth.rsZakor Gyula2016-11-141-5/+1
| | | | | | |
| * | | | | | Fix a typo in dom/bluetooth.rsZakor Gyula2016-11-141-1/+1
| | | | | | |
* | | | | | | Auto merge of #14193 - UK992:win-cleanup, r=vvukbors-servo2016-11-144-157/+0
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Various cleanup <!-- Please describe your changes on the following line: --> Reduces msi file size from 102 MB to 94 MB and installation size from 394 MB to 334 MB. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors <!-- 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/14193) <!-- Reviewable:end -->
| * | | | | | | Remove dummy fonts from gfxUK9922016-11-134-157/+0
| | | | | | | |
* | | | | | | | Auto merge of #14189 - canaltinova:border-image-shorthand, r=Manishearthbors-servo2016-11-142-1/+157
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement border-image shorthand <!-- Please describe your changes on the following line: --> Implementation of border-image shorthand. r? Manishearth --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors <!-- Either: --> - [X] There are tests for these changes <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- 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/14189) <!-- Reviewable:end -->
| * | | | | | | | Implement border-image shorthandNazım Can Altınova2016-11-132-1/+157
| | | | | | | | |
* | | | | | | | | Auto merge of #14201 - nox:write, r=SimonSapinbors-servo2016-11-148-280/+291
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reorganise ServoParser <!-- 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/14201) <!-- Reviewable:end -->
| * | | | | | | | | Reorganise ServoParserAnthony Ramine2016-11-148-280/+291
| | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Free-standing fonctions parse_html and friends are now static methods on ServoParser, and the HTML and XML tokenizers have been moved to private submodules.
* | | | | | | | | Auto merge of #14204 - servo:redirection-limit, r=jdmbors-servo2016-11-141-3/+1
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove the network.http.redirection-limit preference. The Fetch standard defines this value as twenty; there is no good reason to allow changing that at runtime. <!-- 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/14204) <!-- Reviewable:end -->
| * | | | | | | | | Remove the network.http.redirection-limit preference.Ms2ger2016-11-141-3/+1
| | |_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Fetch standard defines this value as twenty; there is no good reason to allow changing that at runtime.
* | | | | | | | | Auto merge of #14135 - frewsxcv:code-like, r=Ms2gerbors-servo2016-11-145-13/+13
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Indicate items in doc comments as code-like. <!-- 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/14135) <!-- Reviewable:end -->