summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb
AgeCommit message (Expand)Author
2020-04-29LibJS: Pass JS::Function around by reference moreAndreas Kling
2020-04-29LibWeb: Make EventListener::function() return a referenceAndreas Kling
2020-04-28LibJS: Implement correct attributes for (almost) all propertiesmattco98
2020-04-26LibWeb: Support loading data: URLs transparently via ResourceLoaderAndreas Kling
2020-04-26LibWeb: Run clang-format on ResourceLoader.cppAndreas Kling
2020-04-25LibWeb: Handle .gifs as images and use ImageDecoder to decode themPeter Nelson
2020-04-24LibWeb: Try fetching a favicon when loading a non-file URL in HtmlViewAndreas Kling
2020-04-24Browser+LibWeb: Open link in new tab on Ctrl+Click :^)Andreas Kling
2020-04-24LibWeb: Pass link target to HtmlView's on_link_click callbackLinus Groh
2020-04-23LibWeb: Add XMLHttpRequest.readyState and constantsLinus Groh
2020-04-23LibWeb: Use proper length values for CanvasRenderingContext2D functionsEmanuele Torre
2020-04-22LibWeb: support confirm() with no argumentsNick Tiberi
2020-04-22LibWeb: Invalidate the canvas element after put_image_data()Andreas Kling
2020-04-21LibWeb: Add ImageData objects and implement 2D context putImageData()Andreas Kling
2020-04-21LibWeb: Hack requestAnimationFrame() to provide a (very fake) timestampAndreas Kling
2020-04-19LibJS: Add MarkedValueList and use it for argument passingAndreas Kling
2020-04-18LibWeb: Parse <br/> into a self-closed br elementAndreas Kling
2020-04-18LibJS: Move builtin prototypes to the global objectAndreas Kling
2020-04-18LibJS+LibWeb: Pass prototype to Object constructorAndreas Kling
2020-04-18LibJS: Make Array constructor take its prototypeAndreas Kling
2020-04-17LibWeb: Implement JS confirm()Nick Tiberi
2020-04-16LibWeb: Implement CanvasRenderingContext2D::stroke_rect() with linesAndreas Kling
2020-04-16LibWeb: Add some basic path drawing functionality to the canvas elementAndreas Kling
2020-04-16LibWeb: Scroll back to the top when a new page is loadedJack Byrne
2020-04-16LibWeb: Support alert() with no argumentsLinus Groh
2020-04-15LibWeb: Use Checked<T> when creating <canvas> bitmap buffersAndreas Kling
2020-04-15LibWeb: Limit the maximum size of <canvas> bitmap buffersAndreas Kling
2020-04-14LibWeb: Add CanvasRenderingContext2D.drawImage(image, x, y)Andreas Kling
2020-04-14LibWeb: Add a JavaScript wrapper for HTMLImageElement :^)Andreas Kling
2020-04-14LibWeb: Add is<HTMLImageElement>()Andreas Kling
2020-04-14LibWeb: Dispatch a "load" event on HTMLImageElementAndreas Kling
2020-04-14LibJS: Remove shift, pop, push functions from Array objectLinus Groh
2020-04-13LibJS: Do not execute scripts with parse errorsStephan Unverwerth
2020-04-13LibWeb: Use specific error classes when throwing exceptionsLinus Groh
2020-04-12LibWeb: Use an AffineTransform for CanvasRenderingContext2D :^)Andreas Kling
2020-04-12LibWeb: Add port blacklist for ResourceLoader::loadBrendan Coles
2020-04-11LibWeb: Prevent http:// URLs loading scripts sourced from file:// URLsBrendan Coles
2020-04-08LibWeb: Support relative URL's in XMLHttpRequestAndreas Kling
2020-04-08LibWeb: Add XMLHttpRequest object :^)Andreas Kling
2020-04-08LibWeb: Expose the global object as "window"Andreas Kling
2020-04-08LibWeb: Remove bizarre HashMap leak in StyleProperties copy ctorAndreas Kling
2020-04-08LibWeb: Make CanvasRenderingContext2D use floats instead of intsAndreas Kling
2020-04-08LibWeb: Add canvas.strokeRect(), and fix scale & translateBrian Gianforcaro
2020-04-07LibWeb: Add Origin concept (protocol, host, port tuple)Andreas Kling
2020-04-07LibCore: Add Core::Timer::create_single_shot()Andreas Kling
2020-04-07LibWeb: Fix null dereference in HtmlView::mousedown_eventAndreas Kling
2020-04-06LibJS: Support array holes, encoded as empty JS::ValueAndreas Kling
2020-04-06Meta: Add missing copyright headersAndreas Kling
2020-04-06AK: Add out() and warn() streams that forward to stdout and stderrAndreas Kling
2020-04-06LibWeb: Allow window.setTimeout() with no intervalAndreas Kling