Bug 122359

Summary: Internals.idl use of [] seems wrong
Product: WebKit Reporter: Alexey Proskuryakov <ap>
Component: WebCore Misc.Assignee: Nobody <webkit-unassigned>
Status: NEW    
Severity: Minor CC: ahmad.saleem792, cdumez, haraken, zan
Priority: P4    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   

Alexey Proskuryakov
Reported 2013-10-04 16:33:46 PDT
DOMString[] getReferencedFilePaths(); ... [RaisesException] DOMString[] formControlStateOfPreviousHistoryItem(); ... DOMString[] shortcutIconURLs(Document document); DOMString[] allIconURLs(Document document); These don't look like they are returning a reference. Shouldn't they all return sequences instead?
Attachments
Ahmad Saleem
Comment 1 2023-09-08 15:52:54 PDT
https://searchfox.org/wubkat/source/Source/WebCore/testing/Internals.cpp#3840 Vector<String> Internals::getReferencedFilePaths() const { frame()->loader().history().saveDocumentAndScrollState(); return FormController::referencedFilePaths(frame()->loader().history().currentItem()->documentState()); } ^ Only able to find this reference about this. Is it still applicable?
Note You need to log in before you can comment on or make changes to this bug.