-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Setters for generated bindings aren't being called #660
Copy link
Copy link
Closed
Labels
A-content/bindingsThe DOM bindingsThe DOM bindings
Description
If some printfs are added to HTMLDocument::SetCookie and Document::SetTitle, the following produces no output:
window.document.cookie = "hi";
window.document.title = "hiiiiiiiii";However, the following does:
Object.getOwnPropertyDescriptor(Object.getPrototypeOf(Object.getPrototypeOf(document)), "title").set.call(document, "hi");
Object.getOwnPropertyDescriptor(Object.getPrototypeOf(document), "cookie").set.call(document, "hi");Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
A-content/bindingsThe DOM bindingsThe DOM bindings