mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Add AudioParam connection support
This commit is contained in:
parent
841fedda4f
commit
00014b3f16
4 changed files with 49 additions and 10 deletions
|
@ -423,6 +423,13 @@ impl<T> PartialEq for Dom<T> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a, T: DomObject> PartialEq<&'a T> for Dom<T> {
|
||||
fn eq(&self, other: &&'a T) -> bool {
|
||||
*self == Dom::from_ref(*other)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
impl<T> Eq for Dom<T> {}
|
||||
|
||||
impl<T> PartialEq for LayoutDom<T> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue