ladybird/Userland/Libraries/LibWeb/DOM
Linus Groh e37cf73300 LibJS: Rename OrdinaryFunctionObject to ECMAScriptFunctionObject
The old name is the result of the perhaps somewhat confusingly named
abstract operation OrdinaryFunctionCreate(), which creates an "ordinary
object" (https://tc39.es/ecma262/#ordinary-object) in contrast to an
"exotic object" (https://tc39.es/ecma262/#exotic-object).

However, the term "Ordinary Function" is not used anywhere in the spec,
instead the created object is referred to as an "ECMAScript Function
Object" (https://tc39.es/ecma262/#sec-ecmascript-function-objects), so
let's call it that.

The "ordinary" vs. "exotic" distinction is important because there are
also "Built-in Function Objects", which can be either implemented as
ordinary ECMAScript function objects, or as exotic objects (our
NativeFunction).

More work needs to be done to move a lot of infrastructure to
ECMAScriptFunctionObject in order to make FunctionObject nothing more
than an interface for objects that implement [[Call]] and optionally
[[Construct]].
2021-09-25 17:51:30 +02:00
..
AbortController.cpp LibWeb: Add initial support for AbortController and AbortSignal 2021-09-02 09:12:17 +02:00
AbortController.h LibWeb: Rename DOM::Window::document() => associated_document() 2021-09-09 21:25:10 +02:00
AbortController.idl LibWeb: Add initial support for AbortController and AbortSignal 2021-09-02 09:12:17 +02:00
AbortSignal.cpp LibWeb: Add initial support for AbortController and AbortSignal 2021-09-02 09:12:17 +02:00
AbortSignal.h LibWeb: Rename DOM::Window::document() => associated_document() 2021-09-09 21:25:10 +02:00
AbortSignal.idl LibWeb: Add initial support for AbortController and AbortSignal 2021-09-02 09:12:17 +02:00
Attribute.h LibWeb: Move Attribute into the DOM namespace 2021-09-16 01:39:47 +02:00
CharacterData.cpp
CharacterData.h LibWeb: Make Node.textContent more spec compliant 2021-09-06 02:36:04 +02:00
CharacterData.idl LibWeb: Add [LegacyNullToEmptyString] to CharacterData.data 2021-09-06 02:18:53 +02:00
Comment.cpp LibWeb: Rename DOM::Window::document() => associated_document() 2021-09-09 21:25:10 +02:00
Comment.h LibWeb: Add constructors for Text, DocumentFragment and Comment 2021-09-06 02:18:41 +02:00
Comment.idl LibWeb: Add constructors for Text, DocumentFragment and Comment 2021-09-06 02:18:41 +02:00
Document.cpp LibWeb: Rename CSS::StyleResolver => StyleComputer 2021-09-24 15:12:15 +02:00
Document.h LibWeb: Rename CSS::StyleResolver => StyleComputer 2021-09-24 15:12:15 +02:00
Document.idl LibWeb: Add getElementsByTagNameNS and add support for * in non-NS 2021-09-22 20:33:06 +02:00
DocumentFragment.cpp LibWeb: Rename DOM::Window::document() => associated_document() 2021-09-09 21:25:10 +02:00
DocumentFragment.h LibWeb: Add constructors for Text, DocumentFragment and Comment 2021-09-06 02:18:41 +02:00
DocumentFragment.idl LibWeb: Implement ParentNode.children 2021-09-14 02:09:18 +02:00
DocumentType.cpp
DocumentType.h
DocumentType.idl
DOMException.h LibWeb: Remove unnecessary WindowObject.h include in DOMException.h 2021-09-22 15:37:50 +02:00
DOMException.idl
DOMImplementation.cpp
DOMImplementation.h
DOMImplementation.idl
Element.cpp LibWeb: Rename CSS::StyleResolver => StyleComputer 2021-09-24 15:12:15 +02:00
Element.h LibWeb: Rename CSS::StyleResolver => StyleComputer 2021-09-24 15:12:15 +02:00
Element.idl LibWeb: Add getElementsByTagNameNS and add support for * in non-NS 2021-09-22 20:33:06 +02:00
ElementFactory.cpp LibWeb: Add a bare-bones SVG <g> element 2021-09-18 01:39:59 +02:00
ElementFactory.h
Event.cpp LibWeb: Remove unused header includes 2021-08-01 08:10:16 +02:00
Event.h
Event.idl
EventDispatcher.cpp LibWeb: Rename DOM::Window::document() => associated_document() 2021-09-09 21:25:10 +02:00
EventDispatcher.h
EventListener.cpp LibJS: Rename Function => FunctionObject 2021-06-27 22:36:04 +02:00
EventListener.h LibJS: Rename Function => FunctionObject 2021-06-27 22:36:04 +02:00
EventTarget.cpp LibJS: Rename OrdinaryFunctionObject to ECMAScriptFunctionObject 2021-09-25 17:51:30 +02:00
EventTarget.h LibWeb: Move onfoo attribute handling to EventTarget 2021-09-19 01:43:27 +02:00
EventTarget.idl
ExceptionOr.h LibWeb: Use AK::Variant default initialization in one more place 2021-09-21 15:25:17 +02:00
HTMLCollection.cpp
HTMLCollection.h
HTMLCollection.idl LibJS: Rewrite most of Object for spec compliance :^) 2021-07-04 22:07:36 +01:00
Node.cpp LibWeb: Implement HTML fragment serialisation and use it in innerHTML 2021-09-14 02:09:18 +02:00
Node.h LibWeb: Add fast_is<HTMLTemplateElement>() 2021-09-16 01:39:47 +02:00
Node.idl LibWeb: Implement Node.isEqualNode(Node? otherNode) 2021-09-13 12:54:24 +02:00
NonDocumentTypeChildNode.h LibWeb: Use default instead of an empty constructor/destructor 2021-09-16 17:17:13 +02:00
NonElementParentNode.h LibWeb: Use default instead of an empty constructor/destructor 2021-09-16 17:17:13 +02:00
ParentNode.cpp LibWeb: Add getElementsByTagNameNS and add support for * in non-NS 2021-09-22 20:33:06 +02:00
ParentNode.h LibWeb: Add getElementsByTagNameNS and add support for * in non-NS 2021-09-22 20:33:06 +02:00
Position.cpp LibWeb: Remove unnecessary DOM::Position destructor 2021-09-08 11:14:29 +02:00
Position.h LibWeb: Remove unnecessary DOM::Position destructor 2021-09-08 11:14:29 +02:00
ProcessingInstruction.cpp
ProcessingInstruction.h
ProcessingInstruction.idl
Range.cpp LibWeb: Rename DOM::Window::document() => associated_document() 2021-09-09 21:25:10 +02:00
Range.h
Range.idl
ShadowRoot.cpp LibWeb: Make the innerHTML setter spec compliant 2021-09-14 02:09:18 +02:00
ShadowRoot.h LibWeb: Make the innerHTML setter spec compliant 2021-09-14 02:09:18 +02:00
ShadowRoot.idl LibWeb: Make the innerHTML setter spec compliant 2021-09-14 02:09:18 +02:00
Text.cpp LibWeb: Rename DOM::Window::document() => associated_document() 2021-09-09 21:25:10 +02:00
Text.h LibWeb: Add constructors for Text, DocumentFragment and Comment 2021-09-06 02:18:41 +02:00
Text.idl LibWeb: Add constructors for Text, DocumentFragment and Comment 2021-09-06 02:18:41 +02:00
Timer.cpp LibJS: Rename Function => FunctionObject 2021-06-27 22:36:04 +02:00
Timer.h LibJS: Rename Function => FunctionObject 2021-06-27 22:36:04 +02:00
Window.cpp LibWeb: Rename "Computed" CSSStyleDeclaration => "Resolved" 2021-09-24 15:01:49 +02:00
Window.h LibWeb: Expose the GlobalEventHandlers mixin on the Window object 2021-09-22 16:40:24 +02:00