mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
cangc fixes in several files + event.rs + rtcpeerconnection.rs (#34002)
Signed-off-by: L Ashwin B <lashwinib@gmail.com>
This commit is contained in:
parent
3b5dc069ae
commit
7ad8822d94
37 changed files with 166 additions and 132 deletions
|
@ -1044,6 +1044,7 @@ pub fn handle_get_css(
|
|||
node_id: String,
|
||||
name: String,
|
||||
reply: IpcSender<Result<String, ErrorStatus>>,
|
||||
can_gc: CanGc,
|
||||
) {
|
||||
reply
|
||||
.send(
|
||||
|
@ -1053,7 +1054,7 @@ pub fn handle_get_css(
|
|||
String::from(
|
||||
window
|
||||
.GetComputedStyle(element, None)
|
||||
.GetPropertyValue(DOMString::from(name)),
|
||||
.GetPropertyValue(DOMString::from(name), can_gc),
|
||||
)
|
||||
}),
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue