Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Basic XRRigidTransform interface | Manish Goregaokar | 2018-12-19 | 1 | -0/+1 | |
| | ||||||
* | Basic XRView interface | Manish Goregaokar | 2018-12-19 | 1 | -0/+1 | |
| | ||||||
* | Basic XRViewerPose interface | Manish Goregaokar | 2018-12-19 | 1 | -0/+1 | |
| | ||||||
* | Basic XRReferenceSpace interface | Manish Goregaokar | 2018-12-19 | 1 | -0/+2 | |
| | ||||||
* | Basic XRSpace interface | Manish Goregaokar | 2018-12-19 | 1 | -0/+1 | |
| | ||||||
* | Basic XRFrame interface | Manish Goregaokar | 2018-12-19 | 1 | -0/+3 | |
| | ||||||
* | Basic XRSession interface | Manish Goregaokar | 2018-12-19 | 1 | -0/+1 | |
| | ||||||
* | Move VR interface to XR | Manish Goregaokar | 2018-12-19 | 1 | -1/+1 | |
| | | | | The WebVR spec no longer has a navigator.vr, but there is a navigator.XR in the XR spec. Instead of duplicating work I've combined the two. | |||||
* | script: Create structures for TextTrack API | Dan Robertson | 2018-12-11 | 1 | -0/+4 | |
| | | | | | | | | | Fill out the basics for the WebIDLs for the following: - TextTrack - TextTrackCue - TextTrackCueList - TextTrackList | |||||
* | Introduce NavigationPreloadManager for ServiceWorkerRegistration | CYBAI | 2018-12-08 | 1 | -0/+1 | |
| | ||||||
* | refactored performance timing to align with updated spec | ddh | 2018-11-20 | 1 | -1/+2 | |
| | | | | | | | | | | | | refactoring with ResourceFetchMetadata implemented deprecated window.timing functionality created ResourceTimingListener trait fixed w3c links in navigation timing updated include.ini to run resource timing tests on ci | |||||
* | Update MPL license to https (part 3) | Jan Andre Ikenmeyer | 2018-11-19 | 1 | -1/+1 | |
| | ||||||
* | Implement TimeRanges interface | Fernando Jiménez Moreno | 2018-10-31 | 1 | -0/+1 | |
| | ||||||
* | Implement unhandledrejection event | CYBAI | 2018-10-18 | 1 | -0/+1 | |
| | ||||||
* | Remove the HTMLTable{Header,Data}CellElement interfaces | Simon Pieters | 2018-10-02 | 1 | -2/+0 | |
| | | | | Fixes #17222. | |||||
* | Implement BiquadFilterNode | Manish Goregaokar | 2018-09-20 | 1 | -0/+1 | |
| | ||||||
* | AnalyserNode in script | Manish Goregaokar | 2018-09-18 | 1 | -0/+1 | |
| | ||||||
* | Add ChannelMergerNode | Manish Goregaokar | 2018-09-03 | 1 | -0/+1 | |
| | ||||||
* | Add PannerNode DOM interface | Manish Goregaokar | 2018-08-24 | 1 | -0/+1 | |
| | ||||||
* | Add AudioListener DOM interface | Manish Goregaokar | 2018-08-24 | 1 | -0/+1 | |
| | ||||||
* | OfflineAudioContext | Fernando Jiménez Moreno | 2018-07-30 | 1 | -0/+2 | |
| | ||||||
* | Remove unimplemented PeriodicWave stub | Fernando Jiménez Moreno | 2018-07-30 | 1 | -1/+0 | |
| | ||||||
* | AudioBufferSourceNode stubs | Fernando Jiménez Moreno | 2018-07-30 | 1 | -0/+1 | |
| | ||||||
* | AudioBuffer stub | Fernando Jiménez Moreno | 2018-07-30 | 1 | -0/+1 | |
| | ||||||
* | GainNode | Fernando Jiménez Moreno | 2018-07-30 | 1 | -0/+1 | |
| | ||||||
* | Initial WebAudio API stubs | Fernando Jiménez Moreno | 2018-07-30 | 1 | -0/+8 | |
| | ||||||
* | Move WebGLVertexArrayObjectOES to script::dom | Anthony Ramine | 2018-05-24 | 1 | -0/+1 | |
| | | | | It's not a WebGL extension itself, it's just used by one. | |||||
* | remove forcetouch support | Paul Rouget | 2018-02-11 | 1 | -1/+0 | |
| | ||||||
* | Implement HTMLPictureElement interface. | Rakhi Sharma | 2018-01-29 | 1 | -0/+1 | |
| | ||||||
* | Extract common text control selection code | Jon Leighton | 2017-11-18 | 1 | -0/+1 | |
| | | | | | | | | | | | | The API for text control selection is the same for both <input> and <textarea>: https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#textFieldSelection Before this change, they had similar but not identical implementations with duplicate code. Now there is a common TextControl trait which contains the implementation used by both. As a result, some previously failing tests now pass. | |||||
* | script: Remove HTMLAppletElement. | Emilio Cobos Álvarez | 2017-11-06 | 1 | -1/+0 | |
| | | | | It was removed from the spec, there's no reason to keep it in tree. | |||||
* | Kick off WebGL 2.0 implementation | Imanol Fernandez | 2017-10-27 | 1 | -0/+1 | |
| | ||||||
* | Rename Root<T> to DomRoot<T> | Anthony Ramine | 2017-09-26 | 1 | -1/+1 | |
| | | | | | | | In a later PR, DomRoot<T> will become a type alias of Root<Dom<T>>, where Root<T> will be able to handle all the things that need to be rooted that have a stable traceable address that doesn't move for the whole lifetime of the root. Stay tuned. | |||||
* | Rename DOMRefCell<T> to DomRefCell<T> | Anthony Ramine | 2017-09-26 | 1 | -1/+1 | |
| | | | | | | | | I don't want to do such a gratuitous rename, but with all the other types now having "Dom" as part of their name, and especially with "DomOnceCell", I feel like the other cell type that we already have should also follow the convention. That argument loses weight though when we realise there is still DOMString and other things. | |||||
* | Rename LayoutJS<T> to LayoutDom<T> | Anthony Ramine | 2017-09-26 | 1 | -2/+2 | |
| | ||||||
* | Rename MutNullableJS<T> to MutNullableDom<T> | Anthony Ramine | 2017-09-26 | 1 | -1/+1 | |
| | ||||||
* | Rename MutJS<T> to MutDom<T> | Anthony Ramine | 2017-09-26 | 1 | -1/+1 | |
| | ||||||
* | Rename JS<T> to Dom<T> | Anthony Ramine | 2017-09-26 | 1 | -2/+2 | |
| | ||||||
* | Rename dom::bindings::js to dom::bindings::root | Anthony Ramine | 2017-09-26 | 1 | -5/+5 | |
| | ||||||
* | User Timing API | Fernando Jiménez Moreno | 2017-09-06 | 1 | -0/+2 | |
| | ||||||
* | Add paint metrics to Performance Timeline API | Fernando Jiménez Moreno | 2017-08-23 | 1 | -0/+1 | |
| | ||||||
* | Add CompositionEvent bindings | Pyfisch | 2017-08-22 | 1 | -0/+1 | |
| | ||||||
* | Performance Timeline API | Fernando Jiménez Moreno | 2017-08-17 | 1 | -0/+3 | |
| | ||||||
* | Implemented paint worklet properties. | Alan Jeffrey | 2017-07-11 | 1 | -0/+2 | |
| | ||||||
* | Auto merge of #17578 - pyfisch:input-event, r=jdm | bors-servo | 2017-07-06 | 1 | -0/+1 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement the InputEvent Add WebIDL, from UI Events working draft. Implement script type for event. Note that actually firing InputEvents is not part of this commit. <!-- Please describe your changes on the following line: --> As part of my effort to improve [keyboard handling](https://groups.google.com/forum/#!topic/mozilla.dev.servo/e6R7eBDjo4M) it is necessary to introduce the InputEvent. While I have a working prototype using the input event this still needs a lot of work before it can be merged into servo. cc @jdm <!-- 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/17578) <!-- Reviewable:end --> | |||||
| * | Implement the InputEvent | Pyfisch | 2017-07-06 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | Add WebIDL, from UI Events working draft. Implement script type for event. Note that actually firing InputEvents is not part of this commit. | |||||
* | | Implemented paint worklets invoking worklet scripts. | Alan Jeffrey | 2017-06-29 | 1 | -0/+2 | |
|/ | ||||||
* | Implemented the plumbing for paint worklets. | Alan Jeffrey | 2017-06-07 | 1 | -0/+1 | |
| | ||||||
* | Add custom element registry | Connor Brewster | 2017-06-05 | 1 | -0/+1 | |
| | ||||||
* | Implement WebGL extensions. | Imanol Fernandez | 2017-05-18 | 1 | -0/+2 | |
| |