summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb
AgeCommit message (Expand)Author
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
2020-04-05AK: Stop allowing implicit downcast with RefPtr and NonnullRefPtrAndreas Kling
2020-04-05LibWeb: Add window.setTimeout()Andreas Kling
2020-04-04LibWeb: Add CanvasRenderingContext2D scale() and translate() stubsAndreas Kling
2020-04-04LibWeb: Handle javascript: URLs inside LibWeb :^)Andreas Kling
2020-04-04LibWeb: Treat '<' characters as part of the text inside <script>Andreas Kling
2020-04-04ProtocolServer+LibProtocol: Reject unhandled URLs instead of assertingAndreas Kling
2020-04-04LibJS: Set length property in Object::put_native_function()Linus Groh
2020-04-04LibWeb: Don't call an absent error callback in load_sync()Andreas Kling
2020-04-04LibJS: Add js_string(Interpreter&, String)Andreas Kling
2020-04-03LibWeb: Implement <script src> support for synchronous scriptsAndreas Kling
2020-04-03LibWeb: Add ResourceLoader::load_sync()Andreas Kling
2020-04-03LibWeb: Protect DOM node while preparing to send mouse eventsAndreas Kling
2020-04-03LibWeb: Add NavigatorObject to MakefileLinus Groh
2020-04-03LibWeb: Handle invalid URL in HtmlView::load()Linus Groh
2020-04-03LibWeb: Add "navigator" object and expose navigator.userAgentAndreas Kling
2020-04-01LibJS: Make Value::as_object() return Object&Andreas Kling
2020-04-01LibJS: Add Interpreter::create<GlobalObjectType>()Andreas Kling
2020-04-01LibWeb: Remove debug spam in WindowObjectAndreas Kling
2020-04-01LibWeb+LibJS: Move DOM Window object to dedicated classesAndreas Kling
2020-04-01Browser: Add error pageLinus Groh