NEW 122359
Internals.idl use of [] seems wrong
https://bugs.webkit.org/show_bug.cgi?id=122359
Summary Internals.idl use of [] seems wrong
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.