style: Minor debugging improvements.

These were useful when implementing forwarding, and forgot to send them
earlier.

Differential Revision: https://phabricator.services.mozilla.com/D53767
This commit is contained in:
Emilio Cobos Álvarez 2019-11-19 06:47:12 +00:00
parent a7c50b57a1
commit d7167cec58
No known key found for this signature in database
GPG key ID: E1152D0994E4BF8A
2 changed files with 10 additions and 3 deletions

View file

@ -331,7 +331,7 @@ where
}
/// The ShadowRoot trait.
pub trait TShadowRoot: Sized + Copy + Clone + PartialEq {
pub trait TShadowRoot: Sized + Copy + Clone + Debug + PartialEq {
/// The concrete node type.
type ConcreteNode: TNode<ConcreteShadowRoot = Self>;