mirror of
https://github.com/servo/servo.git
synced 2025-07-22 14:53:49 +01:00
Propagate CanGc arguments through HTMLCollection constructors (#36180)
Signed-off-by: dericko681 <abonghoderick@gmail.com>
This commit is contained in:
parent
83da63f638
commit
40133ce29a
11 changed files with 125 additions and 53 deletions
|
@ -2128,6 +2128,7 @@ impl ScriptThread {
|
|||
pipeline_id,
|
||||
selector,
|
||||
reply,
|
||||
can_gc,
|
||||
)
|
||||
},
|
||||
WebDriverScriptCommand::FindElementsCSS(selector, reply) => {
|
||||
|
@ -2153,6 +2154,7 @@ impl ScriptThread {
|
|||
pipeline_id,
|
||||
selector,
|
||||
reply,
|
||||
can_gc,
|
||||
)
|
||||
},
|
||||
WebDriverScriptCommand::FindElementElementCSS(selector, element_id, reply) => {
|
||||
|
@ -2184,6 +2186,7 @@ impl ScriptThread {
|
|||
element_id,
|
||||
selector,
|
||||
reply,
|
||||
can_gc,
|
||||
)
|
||||
},
|
||||
WebDriverScriptCommand::FindElementElementsCSS(selector, element_id, reply) => {
|
||||
|
@ -2215,6 +2218,7 @@ impl ScriptThread {
|
|||
element_id,
|
||||
selector,
|
||||
reply,
|
||||
can_gc,
|
||||
)
|
||||
},
|
||||
WebDriverScriptCommand::FocusElement(element_id, reply) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue