summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2020-06-21LibIPC: Add setters for overriding the client/server PID if neededAndreas Kling
2020-06-21LibCore: Add API for taking over an accepted socket from SystemServerAndreas Kling
2020-06-21LibWeb: Fix two typo bugs in table parsingAndreas Kling
2020-06-21LibWeb: A </table> inside <tbody> is not a parse errorAndreas Kling
2020-06-21LibWeb: Fix misunderstood implementation of "table" and "select" scopesAndreas Kling
2020-06-21LibWeb: Implement more of the foster parenting algorithm in the parserAndreas Kling
2020-06-21LibWeb: Add Node.insertBefore(Node node, Node? child)Andreas Kling
2020-06-21LibGfx: Prefer the largest image in the file when loading an ICOPaul Roukema
2020-06-21 LibGfx: Add support for uncompressed/classic ICO filesPaul Roukema
2020-06-21LibGfx: Initial support for ICO image files.Paul Roukema
2020-06-21LibGfx: Add PBM image file type supportHüseyin ASLITÜRK
2020-06-21LibWeb: Add "image/x‑portable‑bitmap" mime type for pbm file extensionHüseyin ASLITÜRK
2020-06-21LibGUI: Bug fix on GUI::Image when image is nullptrHüseyin ASLITÜRK
2020-06-21LibWeb: Generate Event and MouseEvent bindings from IDL :^)Andreas Kling
2020-06-21LibWeb: Generate ImageData bindings from IDL :^)Andreas Kling
2020-06-21LibWeb: Generate HTMLCanvasElement bindings from IDL :^)Andreas Kling
2020-06-21LibWeb: Generate HTMLImageElement bindings from IDL :^)Andreas Kling
2020-06-21LibJS+LibWeb: Add JS::Object::inherits(class_name)Andreas Kling
2020-06-21LibWeb: Add HTMLElement wrapperAndreas Kling
2020-06-21LibWeb: Add EventTarget.removeEventListener()Andreas Kling
2020-06-21LibWeb: Generate EventTarget bindings from IDL :^)Andreas Kling
2020-06-21LibWeb: Add Element.tagName and Element.classNameAndreas Kling
2020-06-21LibWeb: Generate Element bindings from IDL :^)Andreas Kling
2020-06-21LibWeb: Update parser with more insertion modes :^)stelar7
2020-06-21LibGfx: Add BMP loaderMatthew Olsson
2020-06-21LibWeb: Assume URLs ending in / serve html content :^)stelar7
2020-06-21LibWeb: Respect display:none on <input> elementsMaciej Sobaczewski
2020-06-21LibWeb: Fix build after atob/btoa changesAndreas Kling
2020-06-21LibWeb: Expose Node.appendChild() to the webAndreas Kling
2020-06-21LibWeb: Expose Document.body to the webAndreas Kling
2020-06-21LibWeb: Expose Document.createElement() to the webAndreas Kling
2020-06-21LibWeb: Fix missing snake_case-ificiation of function parameter namesAndreas Kling
2020-06-21LibWeb: Add Node.parentNode and Node.parentElement to DOM API :^)Andreas Kling
2020-06-21LibWeb+LibJS: Add a naive way to check if a wrapper "is" a certain typeAndreas Kling
2020-06-21LibWeb: Start generating JS wrappers from (simplified) WebIDL :^)Andreas Kling
2020-06-20LibWeb: Add atob/btoa to WindowObjectJoel Puig Rubio
2020-06-20LibWeb: Add some missing wrapper calls to base class initialize()Andreas Kling
2020-06-20LibJS: Make Interpreter::construct() take a GlobalObject&Andreas Kling
2020-06-20LibJS: Object::initialize() overrides must always call base classAndreas Kling
2020-06-20LibWeb: Give the DOM Window object a (weak) pointer to its JS wrapperAndreas Kling
2020-06-20LibWeb: JS wrappers need to call base class initialize()Andreas Kling
2020-06-20LibJS: NativeProperty get/put should take a GlobalObject&Andreas Kling
2020-06-20LibWeb: Split JS wrapper constructors into construct/initializeAndreas Kling
2020-06-20LibJS: Split more native object constructors into construct/initializeAndreas Kling
2020-06-20LibJS: Remove some Interpreter::global_object() calls in JSONObjectAndreas Kling
2020-06-20LibJS: Pass GlobalObject& to Reference get/putAndreas Kling
2020-06-20LibJS: Make Value::to_object() take a GlobalObject&Andreas Kling
2020-06-20LibJS: More Interpreter::global_object() removalAndreas Kling
2020-06-20LibJS: Pass GlobalObject& when constructing an AccessorAndreas Kling
2020-06-20LibJS: Move native objects towards two-pass constructionAndreas Kling