aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/documentorshadowroot.rs
Commit message (Collapse)AuthorAgeFilesLines
* Strict import formatting (grouping and granularity) (#30325)Samson2023-09-111-11/+12
| | | | | * strict imports formatting * Reformat all imports
* No tracing of nop traceable fields (#29926)Samson2023-08-041-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add `no_trace` option to JSTraceable derive * NoTrace wrapper * Port some types to no_trace schematics * Fixing my unsafe mistakes (not tracing traceables) * Add docs & safety guards for no_trace Safety guards (trait shenanigans) guarantees safety usage of `no_trace` * Port canvas_traits to no_trace * Port servo_media to no_trace * Port net_traits to no_trace * Port style to no_trace * Port webgpu to no_trace * Port script_traits to no_trace * Port canvas_traits, devtools_traits, embedder_traits, profile_traits to no_trace * unrooted_must_root lint in seperate file * Add trace_in_no_trace_lint as script_plugin * Composable types in must_not_have_traceable * Introduced HashMapTracedValues wrapper * `HashMap<NoTrace<K>,V>`->`HashMapTracedValues<K,V>` * Port rest of servo's types to no_trace * Port html5ever, euclid, mime and http to no_trace * Port remaining externals to no_trace * Port webxr and Arc<Mutex<_>> * Fix spelling in notrace doc
* It was removed from the spec and it's disabled everywhere.Emilio Cobos Álvarez2023-06-301-8/+1
| | | | This also removes the meta viewport support (which was implemented on top), but that also had a single test and is disabled everywhere, so I'm not too concerned, it can be implemented again if / when needed.
* Further changes required by ServoOriol Brufau2023-05-161-13/+4
|
* fmtteymour-aldridge2021-02-051-3/+1
|
* Remove unused arguments from methods.teymour-aldridge2021-02-051-6/+2
|
* Doc named getter improvementsPatrick Shaughnessy2020-02-131-2/+2
|
* Use `#![register_tool]` instead of `#![register_attr]`Simon Sapin2019-11-151-2/+2
| | | | CC https://github.com/rust-lang/rust/issues/66079
* Modify *::get_cx methods to return a safe JSContext instead of a raw onemarmeladema2019-07-241-2/+2
|
* Update euclid.Emilio Cobos Álvarez2019-07-231-1/+1
| | | | | | | | There are a few canvas2d-related dependencies that haven't updated, but they only use euclid internally so that's not blocking landing the rest of the changes. Given the size of this patch, I think it's useful to get this landed as-is.
* Move StylesheetSetRef to scriptFernando Jiménez Moreno2019-04-261-1/+1
|
* Rename StylesheetSet to StylesheetSetRefFernando Jiménez Moreno2019-04-261-3/+3
|
* Minor tweaks: rename composed_parent_node_ref, remove or update outdated ↵Fernando Jiménez Moreno2019-04-261-28/+17
| | | | comments...
* Register named elements in either the document or shadow treeFernando Jiménez Moreno2019-04-261-1/+59
|
* Make StylesheetSet an enum instead of a trait objectFernando Jiménez Moreno2019-04-261-4/+2
|
* Do not send RemoveStyleSheet message for shadow rootsFernando Jiménez Moreno2019-04-261-6/+1
|
* Retarget result of shadowRoot.element(s)FromPointFernando Jiménez Moreno2019-04-261-1/+1
|
* Fix Document.Element(s)FromPointFernando Jiménez Moreno2019-04-261-1/+1
|
* Do not add shadow tree styles to stylistFernando Jiménez Moreno2019-04-261-8/+0
|
* Implement TShadowRoot::style_dataFernando Jiménez Moreno2019-04-261-0/+7
|
* Remove stylesheets ownership from DocumentOrShadowRootFernando Jiménez Moreno2019-04-261-48/+14
|
* Move stylesheets related code to DocumentOrShadowRootFernando Jiménez Moreno2019-04-261-32/+151
|
* Always get browsing context from documentFernando Jiménez Moreno2019-04-261-16/+5
|
* Unify DocumentOrShadowRoot implementationFernando Jiménez Moreno2019-04-261-0/+159
|
* Partial ShadowRoot implementation of DocumentOrShadowRootFernando Jiménez Moreno2019-04-261-0/+40