summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CodeGenerators
AgeCommit message (Expand)Author
2021-06-17LibJS: Replace boolean without_side_effects parameters with an enumIdan Horowitz
2021-06-16LibJS: Respect Object::get's without_side_effects parameter for numbersIdan Horowitz
2021-06-15LibWeb: Use Optional<String> more in WrapperGeneratorAndreas Kling
2021-05-31LibWeb/WrapperGenerator: Replace a fprintf() with warnln()Linus Groh
2021-05-28LibWeb: Add PropertyID::Custom to code generatorTobias Christiansen
2021-05-26LibJS+LibWeb: Make Uint8ClampedArray use TypedArrayAli Mohammad Pur
2021-05-19Everywhere: Add missing includes for <AK/OwnPtr.h>Gunnar Beutner
2021-05-12LibCore+Everywhere: Move OpenMode out of IODeviceAli Mohammad Pur
2021-05-09LibWeb: Implement HTMLTableElement thead attributesAdam Hodgen
2021-05-09LibWeb: Implement HTMLTableElement caption attributesAdam Hodgen
2021-05-09LibWeb: Implement HTMLTableElement row attributesAdam Hodgen
2021-05-04LibWeb: Implement EventTarget.dispatchEventLuke
2021-05-04LibWeb: Add support for extended attributes on IDL parametersLuke
2021-04-25LibWeb: Add WebSocket bindingsDexesTTP
2021-04-25LibWeb: Add exception support in IDL constructorsDexesTTP
2021-04-23AK: Rename adopt() to adopt_ref()Andreas Kling
2021-04-22Everywhere: Use linusg@serenityos.org for my copyright headersLinus Groh
2021-04-22LibWeb: Implement a slow but functional HTMLCollection :^)Andreas Kling
2021-04-22LibWeb: Allow IDL interfaces to override get_by_index()Andreas Kling
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-20LibWeb: Add basic support for HTMLInputElement.formAndreas Kling
2021-04-20LibWeb: Don't include "Wrapper" suffix in JS wrapper class_name()Andreas Kling
2021-04-15LibWeb: Add support for optional double arguments with no default valueIdan Horowitz
2021-04-15LibWeb: Emit optional boolean variable definition in WrapperGeneratorIdan Horowitz
2021-04-13LibWeb: Make ExceptionOr work with non-JS::Value typesAnotherTest
2021-04-12LibJS: Make Errors fully spec compliantLinus Groh
2021-04-11LibWeb: Add support for optional default values and optional bools in IDLLuke
2021-04-11LibWeb: Remove trailing ';' from WrapperGenerator functions.Brian Gianforcaro
2021-04-10LibWeb: Support nullable EventListener parameters in WrapperGeneratorLinus Groh
2021-04-06LibWeb: Support the "ImplementedAs" IDL attribute on functionsLuke
2021-04-05LibWeb: Support "pseudo" CSS propertiesTimothy Flynn
2021-04-03LibWeb: Implement XMLHttpRequest.getResponseHeader()Linus Groh
2021-03-15LibWeb: Allow JS wrappers to customize get() and put()Andreas Kling
2021-03-13LibWeb: Expose barebones CSSStyleDeclaration to JavaScriptAndreas Kling
2021-03-08LibWeb: Map all the IDL string types to AK::String for nowAndreas Kling
2021-03-08LibWeb: Start exposing CSS style sheets to JavaScript :^)Andreas Kling
2021-03-08LibWeb: Allow specifying a custom C++ implementation for IDL attributesAndreas Kling
2021-03-08LibWeb: Make generated wrapper code cast IDL longs to i32 for nowAndreas Kling
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-21LibWeb: Add Document.createRange()Andreas Kling
2021-02-21LibWeb: Replace WrapperGenerator's snake_name() with String::to_snakecase()Linus Groh
2021-02-20LibWeb: Move ExceptionOr bindings utils into own headerLinus Groh
2021-02-20LibWeb: Generate code for throwing DOMExceptions based on ExceptionOr<T>Linus Groh
2021-02-20LibWeb: Add DOM::DOMException class and bindingsLinus Groh
2021-02-17LibWeb: Actually construct impl and wrapper in construct() :^)Linus Groh
2021-02-17LibWeb: Parse IDL interface constructorsLinus Groh
2021-02-17LibWeb: Fix .length of functions generated from IDLLinus Groh
2021-02-03LibWeb: Basic implementation of global event handlers :^)Andreas Kling
2021-01-28LibWeb: Add simple implementation of Document.createElementNSLuke
2021-01-25Everywhere: Debug macros instead of constexpr.asynts