summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Bindings
AgeCommit message (Expand)Author
2020-06-01LibWeb: Move ResourceLoader into a new Loader/ directoryAndreas Kling
2020-05-28LibJS: Object index properties have descriptors; Handle sparse indicesMatthew Olsson
2020-05-27LibJS: Simplify and normalize publicly-exposed Object functionsMatthew Olsson
2020-05-26LibWeb: Add cached global attribute name FlyStringsAndreas Kling
2020-05-26LibWeb: Add Element.getAttribute() and Element.setAttribute() :^)Andreas Kling
2020-05-26LibWeb: Add document.querySelector()Linus Groh
2020-05-25LibWeb: Add navigator.language and navigator.languagesLinus Groh
2020-05-21LibWeb: Ignore non-finite args in CanvasRenderingContext2D.{scale,translate}()Linus Groh
2020-05-21LibWeb: Enforce set{Interval,Timeout}() min interval of 0Linus Groh
2020-05-21LibWeb: Allow setInterval() with no intervalLinus Groh
2020-05-21LibWeb: Let various functions throw if not enough argumentsLinus Groh
2020-05-21LibWeb: Embrace Interpreter::{argument_count(), argument(index)}Linus Groh
2020-05-21LibWeb: Send User-Agent in HTTP requestsAndreas Kling
2020-05-21LibWeb: Add CanvasRenderingContext2D.canvasLinus Groh
2020-05-21LibWeb: Let HTMLCanvasElement.getContext() return null for unknown typesLinus Groh
2020-05-20LibWeb: Make window.location.reload() enumerable onlyLinus Groh
2020-05-20LibWeb: Make window.location properties non-configurableLinus Groh
2020-05-20LibWeb: Add leading "?" to window.location.search if not emptyLinus Groh
2020-05-20LibWeb: Add leading "#" to window.location.hash if not emptyLinus Groh
2020-05-18LibWeb: Allow reloading the current page with location.reload()Andreas Kling
2020-05-18LibWeb: Add location.protocol and location.hostAndreas Kling
2020-05-18LibWeb: Allow navigating to a new URL by setting window.location.hrefAndreas Kling
2020-05-18LibWeb: Add a simple window.location object with some getters :^)Andreas Kling
2020-05-18LibJS: Pass Interpreter& to Value::to_number() et al.Linus Groh
2020-05-18LibJS: Change Value::to_object(Heap& -> Interpreter&)Linus Groh
2020-05-15LibJS: Add side-effect-free version of Value::to_string()Andreas Kling
2020-05-06LibWeb: Add canvas.fillAnotherTest
2020-05-05LibWeb: Add canvas.quadraticCurveTo()AnotherTest
2020-05-02LibJS: Add "name" property to functionsLinus Groh
2020-04-28LibJS: Implement correct attributes for (almost) all propertiesmattco98
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-21LibWeb: Add ImageData objects and implement 2D context putImageData()Andreas 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: Add some basic path drawing functionality to the canvas elementAndreas Kling
2020-04-16LibWeb: Support alert() with no argumentsLinus Groh
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-14LibJS: Remove shift, pop, push functions from Array objectLinus Groh
2020-04-13LibWeb: Use specific error classes when throwing exceptionsLinus Groh
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: Make CanvasRenderingContext2D use floats instead of intsAndreas Kling
2020-04-08LibWeb: Add canvas.strokeRect(), and fix scale & translateBrian Gianforcaro