mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Add can_gc to HTMLDocument NamedGetter (#38455)
Just fixing something missed on my last PR https://github.com/servo/servo/pull/38433#discussion_r2250744925 Signed-off-by: Leo Ring <leoring03@gmail.com>
This commit is contained in:
parent
c59ee57b5d
commit
26d2d0f7d8
2 changed files with 6 additions and 2 deletions
|
@ -30,7 +30,7 @@ impl HTMLDocumentMethods<crate::DomTypeHolder> for HTMLDocument {
|
|||
}
|
||||
|
||||
/// <https://html.spec.whatwg.org/multipage/#dom-tree-accessors:dom-document-nameditem-filter>
|
||||
fn NamedGetter(&self, name: DOMString) -> Option<NamedPropertyValue> {
|
||||
self.document.NamedGetter(name, CanGc::note())
|
||||
fn NamedGetter(&self, name: DOMString, can_gc: CanGc) -> Option<NamedPropertyValue> {
|
||||
self.document.NamedGetter(name, can_gc)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -361,6 +361,10 @@ DOMInterfaces = {
|
|||
'canGc': ['Close', 'Show'],
|
||||
},
|
||||
|
||||
'HTMLDocument': {
|
||||
'canGc': ['NamedGetter'],
|
||||
},
|
||||
|
||||
'HTMLElement': {
|
||||
'canGc': ['AttachInternals', 'Focus', 'Blur', 'Click', 'SetInnerText', 'SetOuterText', "SetTranslate", 'SetAutofocus', 'GetOffsetParent', 'OffsetTop', 'OffsetLeft', 'OffsetWidth', 'OffsetHeight', 'InnerText', 'GetOuterText', 'GetOnerror', 'GetOnload', 'GetOnblur', 'GetOnfocus', 'GetOnresize', 'GetOnscroll', 'Style', 'Dataset'],
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue