Age | Commit message (Expand) | Author |
2021-10-31 | LibWeb: Convert throw_dom_exception_if_needed() to ThrowCompletionOr | Timothy Flynn |
2021-10-31 | LibWeb: Convert the Window object to ThrowCompletionOr | Timothy Flynn |
2021-10-23 | AK+Everywhere: Make Base64 decoding fallible | Ben Wiederhake |
2021-10-20 | LibJS: Rename define_native_function => define_old_native_function | Idan Horowitz |
2021-10-20 | LibJS: Add ThrowCompletionOr versions of the JS native function macros | Idan Horowitz |
2021-10-20 | LibJS: Replace usages of JS_{DECLARE, DEFINE}_NATIVE_GETTER | Idan Horowitz |
2021-10-18 | LibJS: Convert to_i32() to ThrowCompletionOr | Idan Horowitz |
2021-10-17 | LibJS: Convert to_double() to ThrowCompletionOr | Idan Horowitz |
2021-10-13 | LibJS: Convert to_object() to ThrowCompletionOr | Linus Groh |
2021-10-13 | LibJS: Convert to_string() to ThrowCompletionOr | Linus Groh |
2021-10-11 | LibWeb: Replace heycam.github.io/webidl URLs with webidl.spec.whatwg.org | Linus Groh |
2021-10-11 | LibWeb: Stub out a basic Selection interface | Andreas Kling |
2021-10-08 | LibWeb: Add CSS.escape() JS function | Sam Atkins |
2021-10-04 | LibWeb: Make WindowObject::clear_interval() call correct function | Andreas Kling |
2021-10-04 | LibWeb: Add basic support for script string argument to setInterval() | Linus Groh |
2021-10-04 | LibWeb: Add basic support for script string argument to setTimeout() | Linus Groh |
2021-10-03 | LibJS: Convert Object::set() to ThrowCompletionOr | Linus Groh |
2021-10-03 | LibJS: Convert Object::get() to ThrowCompletionOr | Linus Groh |
2021-10-02 | LibJS+LibWeb: Use Object::set_prototype() in more places | Linus Groh |
2021-09-30 | LibWeb: Add the Web::Crypto namespace, built-in, and getRandomValues | Idan Horowitz |
2021-09-29 | LibJS: Convert internal_set_prototype_of() to ThrowCompletionOr | Linus Groh |
2021-09-29 | LibWeb: Support window.screen{X,Y,Left,Top} | Andreas Kling |
2021-09-27 | LibWeb: Support window.devicePixelRatio | Andreas Kling |
2021-09-26 | LibWeb: Make WindowObject's prototype immutable | Luke Wilde |
2021-09-26 | LibWeb: Implement window.queueMicrotask(callback) | Andreas Kling |
2021-09-25 | LibWeb: Move window.scroll{X,Y} from wrapper into DOM::Window | Andreas Kling |
2021-09-24 | LibWeb: Return undefined from event handler setters, not an empty value | Linus Groh |
2021-09-22 | LibWeb: Expose the GlobalEventHandlers mixin on the Window object | Andreas Kling |
2021-09-12 | LibWeb: Implement window.matchMedia() | Linus Groh |
2021-09-12 | LibWeb: Expose the location object via Document.location | Luke Wilde |
2021-09-12 | LibWeb: Implement window.event as a [Replaceable] property | Linus Groh |
2021-09-12 | LibWeb: Add the History object and stub pushState and replaceState | Luke Wilde |
2021-09-12 | LibWeb: Use ErrorType::NotAnObjectOfType instead of NotA | Timothy Flynn |
2021-09-11 | LibWeb: Implement Window.scroll() and Window.scrollBy() JS methods | Sam Atkins |
2021-09-11 | LibWeb: Implement Window.scroll{X,Y} JS properties | Sam Atkins |
2021-09-11 | LibWeb: Stub out a dummy window.getComputedStyle() | Andreas Kling |
2021-09-09 | LibWeb: Rename DOM::Window::document() => associated_document() | Andreas Kling |
2021-09-09 | LibWeb: Rename BrowsingContext::document() => active_document() | Andreas Kling |
2021-07-26 | LibWeb: Fix that non-member calls to window gave the wrong this_value | davidot |
2021-07-06 | LibJS: Remove the default length & attributes from define_native_* | Idan Horowitz |
2021-07-06 | LibJS: Add define_direct_property and remove the define_property helper | Idan Horowitz |
2021-07-05 | LibWeb: Replace usage of native properties with accessors in Window | Idan Horowitz |
2021-07-04 | LibJS: Rewrite most of Object for spec compliance :^) | Linus Groh |
2021-06-27 | LibJS: Rename Function => FunctionObject | Andreas Kling |
2021-06-09 | LibJS: Add the Set built-in object | Idan Horowitz |
2021-05-31 | LibWeb: Return null in Window.{top,parent} if browsing context is null | Luke |
2021-05-30 | LibWeb: Rename Web::Frame to Web::BrowsingContext | Andreas Kling |
2021-05-26 | LibWeb: Implement a very basic WebAssembly JS API | Ali Mohammad Pur |
2021-04-22 | Everything: Move to SPDX license identifiers in all files. | Brian Gianforcaro |
2021-04-12 | LibWeb: Add Window.parent and fix Window.top attributes | Luke |