aboutsummaryrefslogtreecommitdiffstats
path: root/resources/prefs.json
Commit message (Collapse)AuthorAgeFilesLines
...
* Enable MutationObserver by default.Josh Matthews2018-07-251-1/+1
|
* remove useless prefPaul Rouget2018-03-221-1/+0
|
* Prompt URL on Cmd/Ctrl-LPaul Rouget2018-03-041-0/+1
|
* style: Put all the multicol props under the same pref for Servo.Emilio Cobos Álvarez2018-02-281-3/+0
| | | | Otherwise it becomes insane.
* style: Make Servo deal with CSS property prefs more correctly.Emilio Cobos Álvarez2018-02-271-1/+0
| | | | Right now you could still set preffed-off properties from CSSStyleDeclaration.
* remove bhtmlPaul Rouget2018-02-111-1/+0
|
* Remove js.mem.gc.refresh_frame_slices.enabled prefAdrian Wielgosik2018-01-061-1/+0
| | | | Clean up after gecko bug 1421358
* add pref to disable http cache, mozilla testsGregory Terzian2017-11-191-0/+1
|
* Add implementation for itemprop and itemtypeVijay Hebbar2017-11-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Created test file Added the stub methods for itemprop and itemscope Resolved html5ever dependency, added ItemScope and ItemProp attr Resolving dependency Added pref override on metadata attributes Resetting to original state due to change in requirement Reverted adding attributes 1. add a customized implementation of parse_plain_attribute 2. add the following methods to HTMLElement.webidl added itemprop and itemtype, enabled pref in test Added initial implementation for getting itemprop property values Adding the wireframe for testing Implemented function to handle itemType Corrected typo Fixed typo bug in code Handling duplicates for itemtype attribute values Added the test suite structure Added test for extra space Added test for regular test values Added test cases for Single property values Test cases to check absence of itemtype and itemprop attributes Added code to handle absence of itemtype or itemprop attributes Added shell script to run all test cases cleared up Cargo file Tidying up Removed the local test file Removed new line for test-tidy Ordered key in prefs.json Fixes for test-tidy Enabled test preferences Created test using wpt Creating WPT Tests for Regular and Single Prop Types Fixed the Regular type test Fixed tests Removed old test case metadata Incorporate review changes from PR Updated MANIFEST to sync test cases Making changed suggested in review Removed editor folding Removed unnecessary code Resolving cargo conflicts Updated PropertyNames and itemtypes implementation Trying different data in test case Updated manifest Updated code based on reviews
* Add configuration for webgl2 tests and update test expectationsImanol Fernandez2017-11-021-1/+1
|
* Kick off WebGL 2.0 implementationImanol Fernandez2017-10-271-0/+1
|
* Implement DOM to textureImanol Fernandez2017-10-161-0/+1
|
* Enable custom elements by defaultConnor Brewster2017-08-311-1/+1
|
* Implement CanvasRenderingContext2d.fillText's "unimplemented" messageBruno Bernardino2017-08-231-0/+1
|
* Add CompositionEvent bindingsPyfisch2017-08-221-0/+1
|
* Auto merge of #17037 - cynicaldevil:impl-Sink, r=noxbors-servo2017-06-171-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added Async HTML Tokenizer Design: I realized having two different parsers for sync and async was wrong, because the API for both was fundamentally the same. All I needed to do was create another Tokenizer, because `ParseNode` ( representation for nodes which are yet to be created) is used by the TreeBuilder and the Sink, and the `Tokenizer` is the 'lowermost' type concerned with these two types. Therefore, I created one and placed it in `async_html.rs`, and also created a new Sink which deals with `ParseNode`s. I changed the methods in ServoParser to take an `async` argument too, which decides which Tokenizer will be used. The Tokenizer isn't exactly *async* for now, but this PR separates action creation from execution, which allows the async behaviour to be implemented later. Right now, all actions are executed soon after they are created. The Sink consists of two Hashmaps, `nodes`, which contains the actual nodes, with the key being their corresponding `ParseNode`'s id, and `parse_node_data`, which contains metadata about the nodes. It's still a bit rough, (I can't figure out how to deal with `complete_script` and `is_mathml_annotation_xml_integration_point`, along with some other parts I wrote in a hurry), but I believe the overall design is sound. I'd like to hear what you think about it. <!-- 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/17037) <!-- Reviewable:end -->
| * Added preference to enable/disable async html tokenizerNikhil Shagrithaya2017-06-171-0/+1
| |
* | Add pref to force WebGL context creation failureBenjamin Dahse2017-06-061-1/+2
|/ | | | | The pref `webgl.testing.context_creation_error` will cause creation of a new WebGLRenderingContext to fail, iff set to true. Also update test expectation of `context_creation_error.html` to pass.
* Add custom element registryConnor Brewster2017-06-051-0/+1
|
* Android life cycle improvements and Gradle integrationImanol Fernandez2017-04-211-0/+2
|
* Implement Gamepad APIImanol Fernandez2017-04-121-0/+1
|
* Implement basic interface for MutationObserver and MutationRecord.Sumit2017-04-051-0/+1
|
* Add pref to ignore popup in testingAttila Dusnoki2017-02-131-0/+1
|
* Fix Permissions and Bluetooth prefsAttila Dusnoki2017-02-131-0/+1
|
* Converted --max-session-history opt into a pref, updated its uses to PREF apityler2017-01-141-0/+1
| | | | updated test docs
* WebVR API Implementation, r=larsbergstromImanol Fernandez2017-01-091-0/+2
|
* Package: Merge changed prefs from package-prefs.json to prefs.jsonUK9922016-12-291-1/+1
|
* Remove the network.http.redirection-limit preference.Ms2ger2016-11-141-1/+0
| | | | | The Fetch standard defines this value as twenty; there is no good reason to allow changing that at runtime.
* style: Turn the CSS flexible box model on by default.Patrick Walton2016-11-081-2/+0
| | | | | | See https://groups.google.com/forum/#!topic/mozilla.dev.servo/MWBms2_BMJo for discussion.
* Fix existing pref JSONsYuki Izumi2016-11-071-34/+34
|
* WebBluetooth Test APIzakorgyula2016-11-041-0/+1
|
* Update test expectations, remove webrender prefs/cmd line.Glenn Watson2016-09-281-1/+0
|
* style: Add a new Timer structure to the shared style context, and basic ↵Emilio Cobos Álvarez2016-07-201-0/+1
| | | | infrastructure for controlling animations.
* resource: Remove the duplicated config from pref.jsonTetsuharu OHZEKI2016-07-051-1/+0
|
* add reload keyboard shortcutmrmiywj2016-06-231-1/+1
| | | | rename the preference to shell.builtin-key-shortcuts.enabled
* Add a test that forces a crash. This makes it easy to manually check the ↵Josh Matthews2016-06-201-0/+1
| | | | output of a segfault with a complicated backtrace; the actual automation doesn't help us except to verify that the crash continues to happen as excepted.
* implement related sw interface and register methodRahul Sharma2016-06-021-0/+1
|
* Make quit-on-escape optionalPaul Rouget2016-05-161-1/+2
|
* Support GC zealAnthony Ramine2016-05-121-0/+2
|
* Ensure bluetooth and testbinding are disabled by default.Josh Matthews2016-05-021-0/+2
|
* Use same value for `network.http.redirection-limit` pref as Gecko.Corey Farwell2016-04-171-1/+1
|
* Add pref for HTTP redirection limit.Corey Farwell2016-04-171-0/+1
| | | | The pref key name matches the associated Gecko pref key name.
* Rename `net.mime.sniff` pref to `network.mime.sniff`.Corey Farwell2016-04-171-1/+1
| | | | | Gecko uses the `network` prefix for network related items. Might be good to mirror that here.
* Use better JS engine defaultsJack Moffitt2016-04-081-0/+35
| | | | | | | | | | | This adds in preferences for all the SM 39 available options (as retrieved from Gecko), and uses the same defaults as Gecko. A few properties are not supported yet, and incremental GC is still always disabled regardless of the preference setting. This also adds back in the options that were accidentally deleted when \#10342 was rebased, which moved things from script_thread.rs to script_runtime.rs.
* forcetouch events supportPaul Rouget2016-04-051-0/+1
| | | | | | | | | | This enables Apple forcetouch DOM events. It requires the preference dom.forcetouch.enabled. The DOM events are described here: - https://developer.apple.com/library/mac/documentation/AppleApplications/Conceptual/SafariJSProgTopics/RespondingtoForceTouchEventsfromJavaScript.html The Cocoa mechanism is documented here: - https://developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Classes/NSEvent_Class/#//apple_ref/doc/uid/20000016-SW274
* Add preferences to enable/disable the JITsStjepan Glavina2016-04-041-0/+2
| | | | | When creating a runtime (script.rs), we check prefs and then enable or disable the JITs (Baseline and Ion).
* Make it possible to use preferences to configure webrender and titlebarPaul Rouget2016-04-011-0/+2
|
* Enable MIME sniffing via a pref instead of a global option.Josh Matthews2015-12-311-0/+1
|
* Change default homepage to servo.orgJames Graham2015-11-181-1/+1
|
* Add a pref for a default homepage.James Graham2015-09-251-1/+2
|