1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:38:11 +00:00
serenity/Userland/Libraries/LibWeb
Linus Groh 8c7d1986b8 LibWeb: Actually construct impl and wrapper in construct() :^)
FooConstructor::construct() is no longer a dummy but now generates
either code to throw an exception (for interfaces without constructor)
or code to construct the wrapper and its impl object.

Constructor overloads are not currenly handled, but that's not something
we need right now anyway. Instead of  regular create() this uses a new
static function create_with_global_object() and passes the WindowObject,
which may be needed - e.g. for XMLHttpRequest, which has an IDL and
JavaScript constructor with no arguments, but needs a DOM::Window in its
create().
2021-02-17 23:45:07 +01:00
..
Bindings LibWeb: Remove a whole bunch of unnecessary #includes 2021-02-10 09:13:29 +01:00
CodeGenerators LibWeb: Actually construct impl and wrapper in construct() :^) 2021-02-17 23:45:07 +01:00
CSS LibWeb: Start implementing <input type=text> using a shadow DOM 2021-02-10 19:06:20 +01:00
DOM LibWeb: Relayout document on CharacterData data change 2021-02-10 19:06:20 +01:00
DumpLayoutTree LibWeb: Remove low-hanging LibGUI fruit from LibWeb 2021-02-10 09:13:29 +01:00
HighResolutionTime LibWeb: Stub out the PerformanceTiming object from Navigation Timing 2021-01-18 15:11:20 +01:00
HTML LibWeb: Start implementing <input type=text> using a shadow DOM 2021-02-10 19:06:20 +01:00
Layout LibWeb: Generate layout nodes for shadow subtrees 2021-02-10 19:06:20 +01:00
Loader LibWeb: Remove a whole bunch of unnecessary #includes 2021-02-10 09:13:29 +01:00
NavigationTiming LibWeb: Stub out the PerformanceTiming object from Navigation Timing 2021-01-18 15:11:20 +01:00
Page LibWeb: Use the correct DOM node when moving text cursor with mouse 2021-02-15 23:25:29 +01:00
Painting Libraries: Add missing headers 2021-01-22 21:49:54 +01:00
Scripts Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
SVG LibWeb: Use move semantics for QualifiedName more often 2021-02-07 11:20:15 +01:00
Tests Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
UIEvents Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
XHR LibWeb: Remove a whole bunch of unnecessary #includes 2021-02-10 09:13:29 +01:00
CMakeLists.txt LibWeb: Remove WidgetBox layout node 2021-02-10 09:13:30 +01:00
DOMTreeModel.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
DOMTreeModel.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
Dump.cpp LibWeb: Convert dbgprintf() => dbgln() 2021-02-17 15:59:13 +01:00
Dump.h LibWeb: Convert dbgprintf() => dbgln() 2021-02-17 15:59:13 +01:00
FontCache.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
FontCache.h Libraries: Add missing headers 2021-01-22 21:49:54 +01:00
Forward.h LibWeb: Add DOM::ShadowRoot to forwarding header 2021-02-10 19:06:20 +01:00
InProcessWebView.cpp LibWeb: Remove WidgetBox layout node 2021-02-10 09:13:30 +01:00
InProcessWebView.h LibWeb: Move window.confirm() to using a PageClient callback 2021-02-10 09:13:30 +01:00
LayoutTreeModel.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
LayoutTreeModel.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
Namespace.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
Namespace.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
Origin.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
OutOfProcessWebView.cpp LibWeb+WebContent: Support window.confirm() in OOPWV 2021-02-10 09:13:30 +01:00
OutOfProcessWebView.h LibWeb+WebContent: Support window.confirm() in OOPWV 2021-02-10 09:13:30 +01:00
QualifiedName.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
StylePropertiesModel.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
StylePropertiesModel.h Libraries: Add missing headers 2021-01-22 21:49:54 +01:00
TreeNode.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
URLEncoder.cpp Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
URLEncoder.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00
WebContentClient.cpp LibWeb+WebContent: Support window.confirm() in OOPWV 2021-02-10 09:13:30 +01:00
WebContentClient.h LibWeb+WebContent: Support window.confirm() in OOPWV 2021-02-10 09:13:30 +01:00
WebViewHooks.h Libraries: Move to Userland/Libraries/ 2021-01-12 12:17:46 +01:00